tor-browser

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

992333-1.html (203B)


      1 <!DOCTYPE html>
      2 <style>
      3 p { --variable: value; transition: 1s --variable; }
      4 </style>
      5 <p>Hello.</p>
      6 <script>
      7 window.onload = function() {
      8  document.querySelector("p").style.color = "green";
      9 };
     10 </script>