mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
13 lines
464 B
XML
13 lines
464 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
onload="
|
||
|
document.documentElement.pauseAnimations();
|
||
|
document.documentElement.setCurrentTime(0);
|
||
|
document.getElementById('b').removeAttribute('begin');
|
||
|
document.getElementById('a').setAttribute('dur', '1s')">
|
||
|
<rect>
|
||
|
<animate attributeName="y" attributeType="XML" id="a"/>
|
||
|
<animate attributeName="fill" attributeType="CSS" id="b"
|
||
|
begin="a.end" dur="2s"/>
|
||
|
</rect>
|
||
|
</svg>
|