Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/smil/seek/anim-x-seek-1c.svg
class="reftest-wait"
onload="go()">
<script type="text/javascript">
function go() {
// Pause, seek to middle of animation, and then seek to the exact ending
// of the animation (to make sure animation effects are cleared)
var svg = document.documentElement;
svg.pauseAnimations();
svg.setCurrentTime(3);
svg.setCurrentTime(4);
svg.removeAttribute("class");
}
</script>
<rect x="15" y="15" width="200" height="200" fill="blue">
<set attributeName="x" to="100" begin="2s" dur="2s"/>
</rect>
</svg>