blob: 94916d1e0ed8db827c351f2d695e9c5ce8d6f595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<script>
function boom()
{
// Remove the first 'a'.
document.documentElement.removeChild(document.getElementById("a"));
document.documentElement.removeAttribute("class");
}
window.addEventListener("load", boom, false);
</script>
<animate id="a"/>
<animate id="a" end="a.begin" />
</svg>
|