summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/avif/animated-avif-timeout.html
blob: 13a5722051ed195cf31dbc5bec85236f690edeee (plain)
1
2
3
4
5
6
7
8
9
10
11
<html class="reftest-wait">
<title>Animated AVIF: Second frame displays quickly, replacing red with green.</title>
<link rel="match" href="animated-avif-timeout-ref.html"/>
<img src=../images/animated-avif.avif onload="loaded()"/>
<script>
  function loaded() {
    setTimeout(function() {
      document.documentElement.classList.remove("reftest-wait");
    }, 1000);
  }
</script>