netsurf/test/js/core.infinite.html

25 lines
344 B
HTML
Raw Normal View History

2013-05-22 20:31:31 +04:00
<html>
<head>
<title>Infinite loop</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
<h1>Infinite loop</h1>
<p>Before</p>
<noscript><p>Javascript is disabled</p></noscript>
2013-05-22 20:31:31 +04:00
<script>
function bar(x) { return (x/2) + 1; }
n=1;
while (n < 3) {
n = bar(n);
}
</script>
</script>
<p>Afterwards</p>
</body>
</html>