tor-browser

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

806751.html (537B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <script>
      5 
      6 function boom()
      7 {
      8  var frame = document.getElementById("frame");
      9  var frameWin = frame.contentWindow;
     10  var frameWinner = Object.create(frameWin);
     11  var v = frameWinner.captureEvents.bind(frameWinner);
     12  frame.src = "local-file-not-found";
     13  setTimeout(function() { setTimeout(finish); v(0); });
     14 }
     15 
     16 function finish() {
     17  document.documentElement.removeAttribute('class');
     18 }
     19 
     20 </script>
     21 </head>
     22 
     23 <body onload="boom();">
     24 <iframe id="frame" srcdoc="1"></iframe>
     25 </body>
     26 </html>