blob: 34c3f45a4e013517294f27c6ecf95f1079d5135f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<svg xmlns="http://www.w3.org/2000/svg" onload="setTimeout(removeText, 30);" class="reftest-wait">
<script>
function removeText()
{
var x = document.getElementById("textPath");
x.removeChild(x.firstChild);
document.documentElement.removeAttribute("class");
}
</script>
<text x="30" y="30"><textPath id="textPath">Foo</textPath></text>
</svg>
|