mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
20 lines
386 B
XML
20 lines
386 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
|
||
|
<filter id="f"/>
|
||
|
|
||
|
<g filter="url(#f)">
|
||
|
<text>a𞠯</text>
|
||
|
</g>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
window.addEventListener("load", function() {
|
||
|
var text = document.getElementsByTagName("text")[0];
|
||
|
text.firstChild.data = "d";
|
||
|
text.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "g"));
|
||
|
}, false);
|
||
|
|
||
|
</script>
|
||
|
|
||
|
</svg>
|