dom/workers/test/timeoutTracing_worker.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:0820831624c4
1 /**
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/publicdomain/zero/1.0/
4 */
5
6 onmessage = function(event) {
7 throw "No messages should reach me!";
8 }
9
10 setInterval(function() { postMessage("Still alive!"); }, 20);
11 setInterval(";", 20);
12
13 postMessage("Begin!");

mercurial