tor-browser

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

file_cancel_content_js.html (390B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>Wait for it...</title>
      5  </head>
      6  <body>
      7  Try to go to another page.
      8  <script>
      9    addEventListener("StartLongLoop", function() {
     10      setTimeout(() => {
     11        const start = Date.now();
     12        while (Date.now() - start < 7500);
     13        window.dispatchEvent(new CustomEvent("LongLoopEnded"));
     14      });
     15    });
     16  </script>
     17  </body>
     18 </html>