diff options
Diffstat (limited to 'dom/workers/test/bug1104064_worker.js')
-rw-r--r-- | dom/workers/test/bug1104064_worker.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dom/workers/test/bug1104064_worker.js b/dom/workers/test/bug1104064_worker.js new file mode 100644 index 0000000000..02b802a826 --- /dev/null +++ b/dom/workers/test/bug1104064_worker.js @@ -0,0 +1,10 @@ +onmessage = function () { + var counter = 0; + var id = setInterval(function () { + ++counter; + if (counter == 2) { + clearInterval(id); + postMessage("done"); + } + }, 0); +}; |