tor-browser

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

339651-1.html (614B)


      1 <html style="border: 1px solid red; width: 6em;" class="reftest-wait">
      2 
      3 <head>
      4 <script type="text/javascript">
      5 
      6 function f1()
      7 {
      8  document.getElementById("s").style.cssFloat = "left";
      9 
     10  document.body.style.display = "inline";
     11  document.getElementById("d").style.display = "inline"; 
     12  document.getElementById("p").style.display = "inline"; 
     13  
     14  setTimeout(f2, 30);
     15 }
     16 
     17 function f2()
     18 {
     19  document.getElementById("d").style.cssFloat = "left";
     20  document.documentElement.removeAttribute("class");
     21 }
     22 
     23 </script>
     24 </head>
     25 
     26 <body onload="f1()">
     27 
     28 TTTTT TTTTT
     29 <div id="d">
     30 YY
     31 <p id="p">
     32 ZZ
     33 <span id="s">
     34 
     35 </body>
     36 
     37 </html>