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