aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/test_timeout.html
blob: 0ae706f67a76ec0172a28cf619681f95e1ada0d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div></div><script>
function foo(i) {
  window.alert("timeout " + i);
  if (i == 10)
    window.alert("timeouts finished");
  else
    window.setTimeout(function() { foo(i + 1); }, 1000);
}

window.alert("beginning timeouts");
window.setTimeout(function() { foo(0); }, 1000);
window.alert("timeouts begun");
</script>