summaryrefslogtreecommitdiff
path: root/test/js/core.infinite.html
blob: 7e6b8de7aba8bbdee0d35df23f6173f4ce3c8335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Infinite loop</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
<h1>Infinite loop</h1>
<p>Before</p>
<script>

function bar(x) { return  (x/2) + 1; }

n=1;
while (n < 3) {
  n = bar(n);

}

</script>
</script>
<p>Afterwards</p>
</body>
</html>