tenfourfox/editor/libeditor/crashtests/766305.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
370 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var s = "x";
for (var i = 0; i < 15; ++i)
s = s + s;
var t = document.createTextNode(s);
document.body.appendChild(t);
window.getSelection().collapse(t, s.length);
document.execCommand("insertText", false, "a");
}
</script>
</head>
<body contenteditable="true" onload="boom();"></body>
</html>