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 <svg xmlns:xlink="http://www.w3.org/1999/xlink"
2 xmlns="http://www.w3.org/2000/svg"
3 onload="boom();">
5 <script type="text/javascript">
7 function boom()
8 {
9 var a = document.getElementById("a");
10 var b = document.getElementById("b");
11 var d = document.getElementById("d");
13 d.appendChild(b);
14 a.appendChild(document.createTextNode("A"));
15 }
17 </script>
19 <g id="a"></g>
21 <use xlink:href="#a" id="b"/>
23 <use xlink:href="#d">
24 <g id="d"/>
25 </use>
27 </svg>