mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
11 lines
363 B
HTML
11 lines
363 B
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>
|