tor-browser

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

animated-avif-timeout.html (433B)


      1 <html class="reftest-wait">
      2 <title>Animated AVIF: Second frame displays quickly, replacing red with green.</title>
      3 <link rel="match" href="animated-avif-timeout-ref.html"/>
      4 <img src=../images/animated-avif.avif onload="loaded()" style="height:500px;image-rendering:crisp-edges;"/>
      5 <script>
      6  function loaded() {
      7    setTimeout(function() {
      8      document.documentElement.classList.remove("reftest-wait");
      9    }, 1000);
     10  }
     11 </script>