terminate_worker.js (254B)
1 /** 2 * Any copyright is dedicated to the Public Domain. 3 * http://creativecommons.org/publicdomain/zero/1.0/ 4 */ 5 onmessage = function (event) { 6 throw "No messages should reach me!"; 7 }; 8 9 setInterval(function () { 10 postMessage("Still alive!"); 11 }, 100);