tor-browser

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

1161320-1.html (461B)


      1 <!doctype html>
      2 <html class="reftest-wait">
      3 <head>
      4 <meta charset=utf-8>
      5 <style>
      6 @keyframes a { }
      7 body {
      8  animation-name: a;
      9 }
     10 </style>
     11 
     12 <script>
     13 function boom()
     14 {
     15  var body = document.body;
     16  body.style.animationPlayState = 'paused';
     17  window.getComputedStyle(body).animationPlayState;
     18  body.style.animationPlayState = 'running';
     19  document.documentElement.removeAttribute("class");
     20 }
     21 </script>
     22 </head>
     23 
     24 <body onload="setTimeout(boom, 100);"></body>
     25 </html>