Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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>