зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
338 B
XML
16 строки
338 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var svgText = document.getElementById("t");
|
||
|
svgText.firstChild.data = "C";
|
||
|
svgText.appendChild(document.createTextNode("D"));
|
||
|
document.caretPositionFromPoint(0, 0);
|
||
|
}
|
||
|
window.addEventListener("load", boom, false);
|
||
|
|
||
|
</script>
|
||
|
<text id="t">A</text>
|
||
|
</svg>
|