tor-browser

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

1374175-1.html (198B)


      1 <style>
      2 @keyframes anim {
      3  from { color: red }
      4 }
      5 input {
      6  animation: anim 1s;
      7 }
      8 </style>
      9 <script>
     10  input=document.createElement('input');
     11  document.documentElement.appendChild(input);
     12 </script>