tor-browser

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

subframe_worker1.js (153B)


      1 var bc = new BroadcastChannel('subworker_channel');
      2 
      3 setInterval(() => {
      4  bc.postMessage('subworker');
      5 }, 10);
      6 
      7 w2 = new Worker("subframe_worker2.js");