tenfourfox/layout/svg/crashtests/881031-1.svg

16 lines
338 B
XML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<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>