gecko/layout/reftests/svg/smil/anim-indefinite-to-4.svg
Brian Birtles ecbab21a00 Bug 614879 - SVG SMIL: Fix indefinite to-animation; r=dholbert, a=roc
--HG--
extra : rebase_source : 9abf06da6a8e24f814623c370e66d77ec467c0e6
2010-12-05 13:13:31 +00:00

15 lines
641 B
XML

<svg xmlns="http://www.w3.org/2000/svg">
<!-- This is not really a to-animation, but we want to check that set
animation isn't incorrectly treated as to-animation.
Provided the attribute being animated is interpolatable (as it is in this
case) and calcMode != discrete, to-animation will begin from the base
value (and never change in this case as the simple duration is
indefinite).
Set animation, however, never sets the base value, only the to value. -->
<rect x="15" y="15" width="200" height="100" fill="blue">
<set attributeName="height" to="200" dur="indefinite"/>
</rect>
</svg>