12 lines
161 B
HTML
12 lines
161 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
function forever() {
|
|
while(true) {}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="forever();">
|
|
|
|
</body>
|
|
</html> |