blob: 5e04739a0ef232dd150f7bf734b46db2420a5c7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<svg xmlns="http://www.w3.org/2000/svg"
class="reftest-wait"
onload="go()">
<script type="text/javascript">
function go() {
// A negative seek should be clamped to 0
var svg = document.documentElement;
svg.pauseAnimations();
svg.setCurrentTime(-1);
svg.removeAttribute("class");
}
</script>
<rect x="100" y="15" width="200" height="200" fill="blue">
<animate attributeName="x" from="0" to="30" begin="-1s" dur="2s"/>
</rect>
</svg>
|