tor-browser

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

sourcemap_header_iframe.html (419B)


      1 <!--
      2  Any copyright is dedicated to the Public Domain.
      3  http://creativecommons.org/publicdomain/zero/1.0/
      4 -->
      5 <!DOCTYPE HTML>
      6 <html>
      7 <head>
      8  <script>
      9    self.onmessage = (msg) => {
     10      const workerLoadedPort = msg.ports[0];
     11      const worker = new Worker(msg.data);
     12      worker.onmessage = () => {
     13        workerLoadedPort.postMessage("worker loaded");
     14      };
     15    };
     16  </script>
     17 </head>
     18 <body></body>
     19 </html>