Revision a8a88982335f854cf824f2f52a9088629b4db011 authored by Anne van Kesteren on 24 April 2018, 13:28:25 UTC, committed by Anne van Kesteren on 24 April 2018, 14:38:35 UTC
1 parent f000b6b
Raw File
animated-png-timeout.html
<html class="reftest-wait">
<title>APNG: Second frame displays quickly, replacing red with green.</title>
<link rel="match" href="animated-png-timeout-ref.html"/>
<img src=../images/apng.png onload="loaded()"/>
<script>
  function loaded() {
    setTimeout(function() {
      document.documentElement.classList.remove("reftest-wait");
    }, 1000);
  }
</script>
back to top