tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

clearTimeouts_worker.js (199B)


      1 var count = 0;
      2 function timerFunction() {
      3  if (++count == 30) {
      4    close();
      5    postMessage("ready");
      6    while (true) {}
      7  }
      8 }
      9 
     10 for (var i = 0; i < 10; i++) {
     11  setInterval(timerFunction, 500);
     12 }