tor-browser

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

1334583-1.html (273B)


      1 <div style="width: 200px; height: 200px; background: purple" id=div>
      2 </div>
      3 <script>
      4 const animation = div.animate(
      5  [ { transform: "scale(1)" },
      6    { transform: "scale(2)" } ],
      7    { iterations: Infinity, duration: 512 } );
      8 animation.currentTime = 2147483647;
      9 </script>