| Index: LayoutTests/svg/animations/svg-tests-on-smil-elements.html
|
| diff --git a/LayoutTests/svg/animations/svg-tests-on-smil-elements.html b/LayoutTests/svg/animations/svg-tests-on-smil-elements.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..88ded80db70fea0706750a140bad54f82b3fdc72
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/animations/svg-tests-on-smil-elements.html
|
| @@ -0,0 +1,11 @@
|
| +<!DOCTYPE html>
|
| +<svg>
|
| + <rect id="#reference" x="10" y="10" width="10" height="10" style="fill: red"/>
|
| + <rect id="#target" x="10" y="0" width="10" height="10" style="fill: green">
|
| + <set attributeName="y" attributeType="XML" to="10" begin="0s" dur="1s" fill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Shape" />
|
| + <set attributeName="x" attributeType="XML" to="20" begin="0s" dur="1s" fill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#BogusFeature" />
|
| + </rect>
|
| +</svg>
|
| +<script>
|
| +document.querySelector("svg").setCurrentTime(0.5);
|
| +</script>
|
|
|