mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-20 20:29:15 +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>
|