Revision de23472d66fb6b1bff6b56586c5299c543bd71f5 authored by Emilio Cobos Álvarez on 11 April 2018, 12:15:02 UTC, committed by Emilio Cobos Álvarez on 13 April 2018, 20:20:17 UTC
This tests the resolution in https://github.com/w3c/csswg-drafts/issues/2149.
1 parent cb845c5
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