Source-Repo: https://github.com/servo/servo Source-Revision: b1305bb7d051f83850c51bb0da0ccc86a5e07922
14 lines
318 B
HTML
14 lines
318 B
HTML
<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>
|