tor-browser

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

1282691-1.html (488B)


      1 <!DOCTYPE html>
      2 <html class=reftest-wait>
      3 <meta charset=utf-8>
      4 <script>
      5 
      6 function boom() {
      7  const div = document.createElement('div');
      8  const anim = div.animate([{}], {});
      9  document.documentElement.appendChild(div);
     10  anim.pause();
     11  document.documentElement.removeChild(div);
     12 
     13  requestAnimationFrame(() => {
     14    document.documentElement.appendChild(div);
     15    anim.play();
     16    document.documentElement.className = '';
     17  });
     18 }
     19 
     20 </script>
     21 </head>
     22 <body onload="boom();"></body>
     23 </html>