timeoutTracing_worker.js (344B)
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 () { 11 postMessage("Still alive!"); 12 }, 20); 13 // eslint-disable-next-line no-implied-eval 14 setInterval(";", 20); 15 16 postMessage("Begin!");