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

Unified Diff: third_party/WebKit/LayoutTests/images/animated-png-timeout.html

Issue 2814453004: Add a layout test for APNG (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/images/animated-png-timeout-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/images/animated-png-timeout.html
diff --git a/third_party/WebKit/LayoutTests/images/animated-png-timeout.html b/third_party/WebKit/LayoutTests/images/animated-png-timeout.html
new file mode 100644
index 0000000000000000000000000000000000000000..ab46e0c13cd29e4796c65cbae934f317c8408c05
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/images/animated-png-timeout.html
@@ -0,0 +1,23 @@
+<html>
+<head>
+<title>APNG test: Second frame displays quickly, replacing red with green.</title>
+<style>
+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.
+</style>
+</head>
+<link rel="match" href="animated-png-timeout-expected.html">
+<body style="margin: 1px">
+<img src=resources/apng-test.png>
+<script>
+if (window.testRunner) {
+ window.onload = function() {
+ testRunner.waitUntilDone();
+
+ setTimeout(function() {
+ testRunner.notifyDone();
+ }, 1000);
+ }
+}
+</script>
+</body>
+</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/images/animated-png-timeout-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698