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 <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>