tor-browser

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

391034-1.xhtml (300B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3 <script>
      4 function boom()
      5 {
      6  var p = document.getElementById("p");
      7  window.getComputedStyle(p, null).getPropertyValue("right");
      8 }
      9 </script>
     10 </head>
     11 
     12 <body onload="boom();">
     13 
     14 <p id="p" style="position: relative; left: 3ch;">foo</p>
     15 
     16 </body>
     17 </html>