зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
580 B
XML
23 строки
580 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||
|
class="reftest-wait">
|
||
|
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("circleID").removeChild(
|
||
|
document.getElementById("at"));
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
window.addEventListener("load", boom, false);
|
||
|
</script>
|
||
|
|
||
|
<circle id="circleID">
|
||
|
<animate/>
|
||
|
<animateTransform id="at" attributeName="transform"/>
|
||
|
</circle>
|
||
|
<animate attributeName="stroke-width"/>
|
||
|
<use xlink:href="#circleID"/>
|
||
|
|
||
|
</svg>
|