blob: 77efd3c0a5dbdca31ab16a717e4fb99e3d633aae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?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>
|