tor-browser

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

386000-1.html (545B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait">
      3 <head>
      4 <script>
      5 
      6 var de;
      7 
      8 function boom()
      9 {
     10  de = document.documentElement;
     11  document.addEventListener("DOMNodeRemoved", f);
     12    
     13  function f()
     14  {
     15    document.removeEventListener("DOMNodeRemoved", f);
     16    de.appendChild(document.createElement("body"));
     17  }
     18    
     19  document.removeChild(de);
     20  
     21  setTimeout(cont, 30);
     22 }
     23 
     24 function cont()
     25 {
     26  document.appendChild(de);
     27  document.documentElement.removeAttribute("class");
     28 }
     29 
     30 </script>
     31 
     32 </head>
     33 <body onload="setTimeout(boom, 30);">
     34 
     35 </body>
     36 </html>