tor-browser

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

1234622-1.html (366B)


      1 <!DOCTYPE html>
      2 
      3 <script>
      4 
      5 window.addEventListener("load", function() {
      6    setTimeout(function() {
      7        window.location = "data:text/html,2";
      8    }, 0);
      9 });
     10 
     11 window.addEventListener("pagehide", function() {
     12    var x = document.createElement("object");
     13    x.setAttribute("data", "data:text/plain,3");
     14    document.documentElement.appendChild(x);
     15 });
     16 
     17 </script>