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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/animated-gif-advance-frames.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month 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/fast/images/animated-gif-advance-frames.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/animated-gif-advance-frames.html b/third_party/WebKit/LayoutTests/fast/images/animated-gif-advance-frames.html
deleted file mode 100644
index 0e63e4474273065f4b45f168ce879df4e92b8160..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/animated-gif-advance-frames.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE HTML>
-<img id="a" width="25" height="25" src="resources/green-red-blue-yellow-animated.gif?a">
-<img id="b" width="25" height="25" src="resources/green-red-blue-yellow-animated.gif?b">
-<img id="c" width="25" height="25" src="resources/green-red-blue-yellow-animated.gif?c">
-<img id="d" width="25" height="25" src="resources/green-red-blue-yellow-animated.gif?d">
-<img id="e" width="25" height="25" src="resources/green-red-blue-yellow-animated.gif?e">
-<script>
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-window.onload = function() {
- // Jump to the 2nd frame.
- window.internals.advanceImageAnimation(b);
-
- // Jump to the 3rd frame.
- for (var i = 0; i < 2; i++)
- window.internals.advanceImageAnimation(c);
-
- // Jump to the 4th frame.
- for (var i = 0; i < 3; i++)
- window.internals.advanceImageAnimation(d);
-
- // Ensure the animation can loop and get back to the first frame.
- for (var i = 0; i < 4; i++)
- window.internals.advanceImageAnimation(e);
-
- requestAnimationFrame(function() {
- if (window.testRunner)
- testRunner.notifyDone();
- });
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698