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> |