Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
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>