tor-browser

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

1380224-1.html (230B)


      1 <!DOCTYPE html>
      2 <style>
      3 p { color: var(--color); }
      4 </style>
      5 <body style="--color: red" onload="run()">
      6 <p>This text should be green.</p>
      7 <script>
      8 function run() {
      9  document.body.style.setProperty("--color", "green");
     10 }
     11 </script>