Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/svg/crashtests/crashtests.list
<?xml version="1.0"?>
<script>
<![CDATA[
function boom()
{
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>