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

Unified Diff: LayoutTests/svg/as-image/animated-svg-animation-control.html

Issue 1304093006: Add a new API for testing animated images (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase harder Created 5 years, 3 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
Index: LayoutTests/svg/as-image/animated-svg-animation-control.html
diff --git a/LayoutTests/svg/as-image/animated-svg-animation-control.html b/LayoutTests/svg/as-image/animated-svg-animation-control.html
deleted file mode 100644
index 553715ab0ff6a7dc3b90f181d7c410561ef34195..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/as-image/animated-svg-animation-control.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<title>SVG-in-&lt;img&gt;: Animation resets when all references are removed.</title>
-<img></img>
-<script>
-if (window.testRunner)
- testRunner.waitUntilDone();
-var img = document.querySelector('img');
-var imgurl = "resources/animated-rect-color.svg";
-img.src = imgurl;
-setTimeout(function() {
- img.src = "";
- setTimeout(function() {
- img.src = imgurl;
- setTimeout(function() {
- if (window.testRunner)
- testRunner.notifyDone();
- }, 10);
- }, 0);
-}, 100);
-</script>
-

Powered by Google App Engine
This is Rietveld 408576698