OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <head> | |
3 <title>APNG test: Second frame displays quickly, replacing red with green.</titl e> | |
4 <style> | |
5 img { margin: 1px; } | |
foolip
2017/04/11 04:19:03
Is this needed, can't it be removed both here and
scroggo_chromium
2017/04/11 13:57:50
Not necessary. Carried over from another test.
| |
6 </style> | |
7 </head> | |
8 <link rel="match" href="animated-png-timeout-expected.html"> | |
9 <body style="margin: 1px"> | |
10 <img src=resources/apng-test.png> | |
11 <script> | |
12 if (window.testRunner) { | |
13 window.onload = function() { | |
14 testRunner.waitUntilDone(); | |
15 | |
16 setTimeout(function() { | |
17 testRunner.notifyDone(); | |
18 }, 1000); | |
19 } | |
20 } | |
21 </script> | |
22 </body> | |
23 </html> | |
OLD | NEW |