mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
417 B
XML
17 lines
417 B
XML
<svg xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<foreignObject requiredFeatures="foo" id="f">
|
|
<svg>
|
|
<text id="t"/>
|
|
</svg>
|
|
</foreignObject>
|
|
|
|
<script>
|
|
window.addEventListener("load", function() {
|
|
document.documentElement.appendChild(document.getElementById("f"))
|
|
document.getElementById("t").getNumberOfChars();
|
|
}, false);
|
|
</script>
|
|
|
|
</svg>
|