blob: 106428a297b3fe9fe997f91d2a882fc697f177f4 (
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").setAttribute("id", "m1");
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>
|