tor-browser

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

1339930.html (325B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <script>
      6 window.onload = function(){
      7  let x = document.getElementsByTagName("iframe")[0];
      8  let w = window.open();
      9  let o = window.frames[0];
     10  x.remove();
     11  o.requestIdleCallback(function(){});
     12  w.close();
     13 };
     14 </script>
     15 </head>
     16 <body>
     17 <iframe></iframe>
     18 </body>
     19 </html>