summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/seek/anim-x-seek-1d.svg
blob: bb0edc7474fc03ec5a30648dddf24d7a6cd84538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<svg xmlns="http://www.w3.org/2000/svg"
     class="reftest-wait"
     onload="go()">
  <script type="text/javascript">
  function go() {
    // Pause, seek to middle of animation, and then seek to a time after
    // the animation is over (to make sure animation effects are cleared)
    var svg = document.documentElement;
    svg.pauseAnimations();
    svg.setCurrentTime(3);
    svg.setCurrentTime(5);
    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>