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

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

Issue 2814453004: Add a layout test for APNG (Closed)
Patch Set: Respond to comments 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/external/wpt/apng/animated-png-timeout-ref.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout-ref.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698