tor-browser

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

379799-1.html (431B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 
      5 <style id="firstLetterSheet">
      6  .fl:first-letter { color: red }
      7 </style>
      8 
      9 <script>
     10 
     11 function boom()
     12 {
     13  document.getElementById("parent").className = "";
     14  document.body.offsetWidth;
     15  document.getElementById("test").style.position = "relative";
     16 }
     17 
     18 </script>
     19 
     20 </head>
     21 
     22 <body onload="boom()">
     23 
     24 <div class="fl" id="parent" style="color: green">
     25  Foo <span id="test">Bar</span>
     26 </div>
     27 
     28 </body>
     29 </html>