mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-20 20:29:15 +00:00
27 lines
616 B
XML
27 lines
616 B
XML
<?xml version="1.0"?>
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<script>
|
|
<![CDATA[
|
|
|
|
function boom()
|
|
{
|
|
var svgText = document.createElementNS("http://www.w3.org/2000/svg", "text");
|
|
document.documentElement.appendChild(svgText);
|
|
var text1 = document.createTextNode("A");
|
|
svgText.appendChild(text1);
|
|
var text2 = document.createTextNode("");
|
|
svgText.appendChild(text2);
|
|
document.caretPositionFromPoint(0, 0);
|
|
setTimeout(function() {
|
|
text2.data = "B";
|
|
document.caretPositionFromPoint(0, 0);
|
|
}, 0);
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
|
|
]]>
|
|
</script>
|
|
</svg>
|