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..6975bd9c4e7339ceceb9f078bbf0c356f9949f3e |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html |
@@ -0,0 +1,11 @@ |
+<html class="reftest-wait"> |
+<title>APNG: Second frame displays quickly, replacing red with green.</title> |
+<link rel="match" href="animated-png-timeout-ref.html"/> |
+<img src=../images/apng.png onload="loaded()"/> |
+<script> |
+ function loaded() { |
+ setTimeout(function() { |
+ document.documentElement.classList.remove("reftest-wait"); |
+ }, 1000); |
+ } |
+</script> |