зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
386 B
XML
20 строки
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>
|