tor-browser

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

1479681.html (255B)


      1 <!doctype html>
      2 <style>
      3  div {
      4    color: red;
      5    transition: margin 1s ease, all 2s;
      6  }
      7 </style>
      8 <div>Should turn Green</div>
      9 <script>
     10 onload = function() {
     11  document.querySelector('div').style.color = "green";
     12  document.body.offsetTop;
     13 }
     14 </script>