Index: LayoutTests/svg/as-image/svg-image-with-css-animation.html |
diff --git a/LayoutTests/svg/as-image/svg-image-with-css-animation.html b/LayoutTests/svg/as-image/svg-image-with-css-animation.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d587a93aae7e0e46336e7d98ded8593bc85aa49f |
--- /dev/null |
+++ b/LayoutTests/svg/as-image/svg-image-with-css-animation.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<img src="resources/css-animation.svg"> |
+<script> |
+if (window.testRunner) |
+ testRunner.waitUntilDone(); |
+document.querySelector('img').onload = function() { |
+ window.setTimeout(function() { |
+ if (window.testRunner) |
+ testRunner.notifyDone(); |
+ }, 50); |
+} |
+</script> |