summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/png/apng/first-frame-not-IDAT.html
blob: 8abe46d339937aeb93694be9dd409b0628ee7fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>PNG Third Edition: animated PNG</title>
<link rel="author" title="Philip Taylor" href="mailto:excors@gmail.com">
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<link rel="help" href="https://www.w3.org/TR/png-3/#apng-frame-based-animation">
<link rel="help" href="https://www.w3.org/TR/png-3/#structure">
<link rel="match" href="apng-lime-rectangle-ref.html">
<meta name="assert" content="Otherwise, the static image is not part of the animation.">
<script>
    const el = document.querySelector(".reftest-wait");
    setTimeout(() => {
        el.classList.remove('reftest-wait');
        }, 2100);
</script>
<body>
    <p>Test passes if you see a lime green rectangle, and no red.</p>
    <div class="test"><img src="support/002.png" alt=""></div>
</body>