Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
3 <script>
4 <![CDATA[
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);
17 oldSvg.removeAttribute("class");
18 }
20 window.addEventListener("load", function() { setTimeout(boom, 200); }, false);
22 ]]>
23 </script>
24 <animate id="a"/>
25 </svg>