tor-browser

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

559491.html (740B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <script type="text/javascript">
      5 
      6 function boom()
      7 {
      8  for (var i = 0; i < 200; ++i) {
      9    //dump(i + "\n");
     10    r1 = document.createElementNS("http://www.w3.org/1999/xhtml", "a");
     11    r1.setAttributeNS(null, "href", "404");
     12    r1.style.color = "green";
     13    r2 = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
     14    r2.style.color = "red";
     15    document.removeChild(document.documentElement);
     16    document.appendChild(r1);
     17    document.removeChild(document.documentElement);
     18    document.appendChild(r2);
     19    document.removeChild(document.documentElement);
     20    document.appendChild(r1);
     21    document.documentElement.offsetHeight;
     22  }
     23 }
     24 
     25 </script>
     26 </head>
     27 
     28 <body onload="boom();"></body>
     29 </html>