Index: LayoutTests/svg/animations/end-event.svg |
diff --git a/LayoutTests/svg/animations/end-event.svg b/LayoutTests/svg/animations/end-event.svg |
new file mode 100755 |
index 0000000000000000000000000000000000000000..666ef78e1d46fd7fbca3637406a8a2cd3bdbde26 |
--- /dev/null |
+++ b/LayoutTests/svg/animations/end-event.svg |
@@ -0,0 +1,19 @@ |
+<?xml version="1.0" encoding="UTF-8"?> |
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd"> |
+<svg onload="loaded()" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> |
+ <rect x="0" y="0" width="50" height="50" fill="green"> |
+ <animate id="anim" attributeName="visibility" to="visible" begin="0s" end="2s" /> |
+ <set attributeName="x" to="100" begin="anim.endEvent" /> |
+ </rect> |
+ <script> |
+ if (window.testRunner) |
+ testRunner.waitUntilDone(); |
+ |
+ function loaded() { |
+ document.documentElement.setCurrentTime(2); |
+ |
+ if (window.testRunner) |
+ setTimeout(function() {testRunner.notifyDone();}, 100); |
+ } |
+ </script> |
+</svg> |