blob: 94887cf71377676a41f323dd5e08ec3e09fee0c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<script>
<![CDATA[
function boom()
{
var anim = document.getElementById("a");
var newSvg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
var oldSvg = document.removeChild(document.documentElement);
document.appendChild(newSvg);
document.removeChild(document.documentElement);
newSvg.pauseAnimations();
document.appendChild(newSvg);
newSvg.appendChild(anim);
oldSvg.removeAttribute("class");
}
window.addEventListener("load", function() { setTimeout(boom, 200); }, false);
]]>
</script>
<animate id="a"/>
</svg>
|