blob: 8b9cf7b70ef2e7917f1829667c6fa7647d43def2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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>
|