Revision 75a06f907589cab45d901e88b54babb182e2446f authored by Philip Jägenstedt on 24 September 2018, 12:30:26 UTC, committed by Geoffrey Sneddon on 24 September 2018, 12:30:26 UTC
Found by https://chromium-review.googlesource.com/c/chromium/src/+/1240181#message-2a9347bd8ccd79130eb02de97600c0faf4d429ce

But the same typo also made elsewhere.
1 parent 23c5494
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