tor-browser

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

394246-2.html (371B)


      1 <html class="reftest-wait">
      2 <head>
      3 <script>
      4 function boom()
      5 {
      6  var div = document.getElementById("div");
      7  div.innerHTML = div.innerHTML.slice(1);
      8  setTimeout(c, 30);
      9 }
     10 
     11 function c()
     12 {
     13  div.innerHTML = div.innerHTML.slice(1);
     14  document.documentElement.removeAttribute("class");
     15 }
     16 </script>
     17 </head>
     18 <body onload="boom();">
     19 
     20 <div id="div">t
     21 &#769;</div>
     22 
     23 </body></html>