tor-browser

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

1575926.html (613B)


      1 <style>
      2    @keyframes animation_0 {
      3        88% { }
      4    }
      5 
      6    * {
      7        animation-name: animation_0;
      8        animation-delay: 4s;
      9    }
     10 </style>
     11 <script>
     12  function start () {
     13    const input = document.createElement('input')
     14    document.documentElement.appendChild(input)
     15    const animations = input.getAnimations({})
     16    const animation = animations[(3782796448 % animations.length)]
     17    const effect = animation.effect
     18    effect.setKeyframes({ 'borderLeft': ['inherit'] })
     19    effect.target = null
     20    input.contentEditable = 'true'
     21  }
     22 
     23  document.addEventListener('DOMContentLoaded', start)
     24 </script>