tor-browser

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

1315889-1.html (219B)


      1 <!DOCTYPE html>
      2 <style>
      3 .x { color: blue; }
      4 </style>
      5 <div class=x>hello</div>
      6 <script>
      7 document.body.offsetWidth;
      8 var x = document.querySelector(".x");
      9 x.className = "";
     10 x.remove();
     11 document.body.offsetWidth;
     12 </script>