blob: 6975bd9c4e7339ceceb9f078bbf0c356f9949f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<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>
|