gecko/dom/workers/test/terminate_worker.js
2012-03-17 13:07:28 -07:00

14 lines
324 B
JavaScript

/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
onclose = function() {
postMessage("Closed!");
}
onmessage = function(event) {
throw "No messages should reach me!";
}
setInterval(function() { dump("WorkerAlive\n"); postMessage("Still alive!"); }, 100);