tor-browser

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

1585770.html (612B)


      1 <html class="reftest-wait">
      2 <script>
      3 function start () {
      4  const kf_effect =
      5      new KeyframeEffect(document.documentElement,
      6                         { opacity: ['', '1'] },
      7                         { easing: 'step-end',
      8                           duration: 10000 } );
      9  const copy = new KeyframeEffect(kf_effect);
     10  const animation = new Animation(copy);
     11 
     12  animation.reverse();
     13  document.documentElement.getBoundingClientRect();
     14 
     15  requestAnimationFrame(() => {
     16    document.documentElement.classList.remove("reftest-wait");
     17  });
     18 }
     19 
     20 document.addEventListener('DOMContentLoaded', start);
     21 </script>
     22 </html>