зеркало из https://github.com/mozilla/gecko-dev.git
10 строки
311 B
XML
10 строки
311 B
XML
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<script>
|
|
var a = document.createElementNS("http://www.w3.org/2000/svg", "text");
|
|
a.appendChild(document.createTextNode(""));
|
|
document.documentElement.appendChild(a);
|
|
a.getNumberOfChars();
|
|
document.documentElement.removeChild(a);
|
|
</script>
|
|
</svg>
|