tor-browser

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

675518.html (575B)


      1 <!DOCTYPE html>
      2 <script>
      3 function boom()
      4 {
      5  var frame = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe");
      6  frame.src = "javascript:'<html><body>1</body></html>';";
      7  document.body.appendChild(frame);
      8  var frameWin = frame.contentWindow;
      9 
     10  var resizeListener = function() {
     11    frameWin.removeEventListener("resize", resizeListener, false);
     12    frameWin.document.write("3...");
     13  };
     14  frameWin.addEventListener("resize", resizeListener, false);
     15 
     16  frameWin.document.write("2...");
     17 }
     18 
     19 </script>
     20 <body onload="boom();"></body>
     21 </html>