Chromium Code Reviews| Index: LayoutTests/svg/animations/discard-rect-with-anim-child-a.svg |
| diff --git a/LayoutTests/svg/animations/discard-rect-with-anim-child-a.svg b/LayoutTests/svg/animations/discard-rect-with-anim-child-a.svg |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6620d9500e906d3e7d92c5e37dcf8cee72100a1e |
| --- /dev/null |
| +++ b/LayoutTests/svg/animations/discard-rect-with-anim-child-a.svg |
| @@ -0,0 +1,21 @@ |
| +<?xml version="1.0" encoding="UTF-8"?> |
| +<svg onload="loaded()" version="1.2" baseProfile="tiny" id="svg-root" width="100%" height="100%" |
| + viewBox="0 0 480 360" xmlns="http://www.w3.org/2000/svg" |
| + xmlns:xlink="http://www.w3.org/1999/xlink"> |
| + <rect id="r1" x="100" y="100" width="200" height="200" fill="green"/> |
| + <rect id="r2" x="100" y="100" width="200" height="200" fill="blue"> |
| + <set attributeName="fill" to="red" begin="2s" fill="freeze" /> |
|
pdr.
2013/12/20 23:49:11
nit: indentation
|
| + <discard id="discard1" begin="4s"/> |
| + </rect> |
| + <script> |
| + if (window.testRunner) |
| + testRunner.waitUntilDone(); |
| + |
| + function loaded() { |
| + document.documentElement.setCurrentTime(4); |
| + |
| + if (window.testRunner) |
| + setTimeout(function(){testRunner.notifyDone();}, 100); |
| + } |
| + </script> |
| +</svg> |