tor-browser

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

682637-1.html (309B)


      1 <!DOCTYPE html>
      2 <html>
      3 
      4 <head>
      5 <script>
      6 
      7 function boom()
      8 {
      9  var frame = document.getElementById("f");
     10  var frameWin = frame.contentWindow;
     11  frame.remove();
     12  frameWin.onmouseover = function(){};
     13 }
     14 
     15 </script>
     16 </head>
     17 
     18 <body onload="boom();">
     19 <iframe id="f" src="data:text/html,1"></iframe>
     20 </body>
     21 
     22 </html>