https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e92ca1fad000cdc17052357ec324e6cfa20b5585 authored by Kenichi Ishibashi on 29 March 2018, 08:11:29 UTC
Remove create_file_system_file()
Tip revision: e92ca1f
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