2010-01-12 12:00:49 -08:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
|
|
class="reftest-wait"
|
|
|
|
onload="
|
2010-01-12 12:00:50 -08:00
|
|
|
document.documentElement.pauseAnimations();
|
2010-01-12 12:00:49 -08:00
|
|
|
document.documentElement.setCurrentTime(0);
|
|
|
|
document.getElementById('c').removeAttribute('dur');
|
2010-01-12 12:00:50 -08:00
|
|
|
setTimeAndSnapshot(2, false)">
|
2010-01-12 12:00:49 -08:00
|
|
|
<script xlink:href="../smil-util.js" type="text/javascript"/>
|
|
|
|
<!--
|
|
|
|
At first we have:
|
|
|
|
c: 0s-1s
|
|
|
|
new -> a: 1s-1.5s
|
|
|
|
new -> b: 1s-2s
|
|
|
|
new -> c: 0s-1s [end: 2s]
|
|
|
|
|
|
|
|
Then we remove dur on c giving us:
|
|
|
|
c: 0s-2s
|
|
|
|
change -> a: 2s-2.5s
|
|
|
|
change -> b: 2s-3s
|
|
|
|
change -> c: 0s-3s
|
|
|
|
change -> a: 3s-3.5s [Should break the cycle here]
|
|
|
|
change -> b: 3s-4s
|
|
|
|
change -> c: 0s-4s
|
|
|
|
etc.
|
|
|
|
|
|
|
|
If we break on the second change notice we should arrive at:
|
|
|
|
a: 2s-2.5s
|
|
|
|
b: 2s-3s
|
|
|
|
c: 0s-3s
|
|
|
|
-->
|
|
|
|
<rect x="100" y="100" width="100" height="100" fill="red">
|
|
|
|
<animate attributeName="y" attributeType="XML" from="0" to="0" id="a"
|
|
|
|
begin="c.end" dur="0.5s"/>
|
|
|
|
<animate attributeName="fill" attributeType="CSS" id="b"
|
2010-01-12 12:00:49 -08:00
|
|
|
values="green; blue"
|
2010-01-12 12:00:50 -08:00
|
|
|
begin="a.begin" dur="1s"/>
|
2010-01-12 12:00:49 -08:00
|
|
|
<animate attributeName="x" attributeType="XML" id="c"
|
|
|
|
from="0" to="100" fill="freeze"
|
2010-01-12 12:00:50 -08:00
|
|
|
begin="0" end="b.end" dur="1s"/>
|
2010-01-12 12:00:49 -08:00
|
|
|
</rect>
|
|
|
|
</svg>
|