mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
355 B
XML
19 lines
355 B
XML
<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> |