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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html b/third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html
new file mode 100644
index 0000000000000000000000000000000000000000..d1e1fc8bc176dce1c76686806245e74735100f58
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html
@@ -0,0 +1,15 @@
+<html class="reftest-wait">
+<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.
+<title>APNG test: Second frame displays quickly, replacing red with green.</title>
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.
+</head>
+<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.
+<img src=../images/apng-test.png onload="loaded()"/>
+<script>
+ function loaded() {
+ setTimeout(function() {
+ document.documentElement.classList.remove("reftest-wait");
+ }, 1000);
+ }
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698