summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/637214-2.svg
blob: 4f5c9292778b872147da0271362be7a82144b9b0 (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
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="reftest-wait">

<script>
<![CDATA[

window.addEventListener("load", function () {
    document.documentElement.appendChild(document.getElementById("a"));
    setTimeout(function () {
        document.getElementById("x").removeAttribute("id");
        document.documentElement.removeAttribute("class");
    }, 0);
}, false);

]]>
</script>

<g id="a">
  <path id="x"/>
  <text>
    <textPath xlink:href="#m1">Text</textPath>
    <textPath xlink:href="#m1">Text</textPath>

  </text>
</g>

</svg>