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

24 lines
432 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var x = document.getElementById("x");
window.getSelection().removeAllRanges();
var range = document.createRange();
range.setStart(x, 0);
range.setEnd(x, 0);
window.getSelection().addRange(range);
document.execCommand("delete", false, "null");
}
</script>
</head>
<body contenteditable="true" onload="boom();"><div></div><span id="x"></span></body>
</html>