layout/base/crashtests/432752-1.svg

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/base/crashtests/432752-1.svg	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,27 @@
     1.4 +<svg xmlns:xlink="http://www.w3.org/1999/xlink" 
     1.5 +     xmlns="http://www.w3.org/2000/svg"
     1.6 +     onload="boom();">
     1.7 +
     1.8 +  <script type="text/javascript">
     1.9 +  
    1.10 +  function boom()
    1.11 +  {
    1.12 +    var a = document.getElementById("a");
    1.13 +    var b = document.getElementById("b");
    1.14 +    var d = document.getElementById("d");
    1.15 +
    1.16 +    d.appendChild(b);
    1.17 +    a.appendChild(document.createTextNode("A"));
    1.18 +  }
    1.19 +
    1.20 +  </script>
    1.21 +
    1.22 +  <g id="a"></g>
    1.23 +
    1.24 +  <use xlink:href="#a" id="b"/>
    1.25 +
    1.26 +  <use xlink:href="#d">
    1.27 +    <g id="d"/>
    1.28 +  </use>
    1.29 +  
    1.30 +</svg>

mercurial