Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1172)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html

Issue 2814453004: Add a layout test for APNG (Closed)
Patch Set: Move the images, and update src Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html class="reftest-wait">
2 <head>
foolip 2017/04/12 04:55:20 It's OK, and some reviewers like me encourage, to
scroggo_chromium 2017/04/12 14:04:11 Done.
3 <title>APNG test: Second frame displays quickly, replacing red with green.</titl e>
foolip 2017/04/12 04:55:20 uNit: Having "test" as part of the test descriptio
scroggo_chromium 2017/04/12 14:04:11 Done.
4 </head>
5 <link rel="match" href="animated-png-timeout-expected.html"/>
foolip 2017/04/12 04:55:20 Because of this syntax the name can be anything, b
scroggo_chromium 2017/04/12 14:04:11 Done.
6 <img src=../images/apng-test.png onload="loaded()"/>
7 <script>
8 function loaded() {
9 setTimeout(function() {
10 document.documentElement.classList.remove("reftest-wait");
11 }, 1000);
12 }
13 </script>
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698