summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/432752-1.svg
blob: f5ea2aeb922b1f4b1fb60f22308964f1189a96ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<svg xmlns:xlink="http://www.w3.org/1999/xlink" 
     xmlns="http://www.w3.org/2000/svg"
     onload="boom();">

  <script type="text/javascript">
  
  function boom()
  {
    var a = document.getElementById("a");
    var b = document.getElementById("b");
    var d = document.getElementById("d");

    d.appendChild(b);
    a.appendChild(document.createTextNode("A"));
  }

  </script>

  <g id="a"></g>

  <use xlink:href="#a" id="b"/>

  <use xlink:href="#d">
    <g id="d"/>
  </use>
  
</svg>