tenfourfox/editor/libeditor/crashtests/769008-1.html

24 lines
432 B
HTML
Raw Normal View History

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