mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
11 lines
287 B
XML
11 lines
287 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
<script>
|
||
|
window.addEventListener("load", function() {
|
||
|
setTimeout(function() {
|
||
|
document.getElementById("a").style.MozAnimationName = "a";
|
||
|
}, 0);
|
||
|
}, false);
|
||
|
</script>
|
||
|
<rect id="a"><animate attributeName="fill" by="#AAF573"/></rect>
|
||
|
</svg>
|