blob: 0970c994d34c9624ee07f0f7c44c3f5df93b1321 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html class="reftest-wait">
<title>Animated AVIF: Second frame displays quickly, replacing red with green.</title>
<link rel="match" href="animated-avif-timeout-ref.html"/>
<img src=../images/animated-avif.avif onload="loaded()" style="height:500px"/>
<script>
function loaded() {
setTimeout(function() {
document.documentElement.classList.remove("reftest-wait");
}, 1000);
}
</script>
|