summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/crashtests/1645983-1.html
blob: d2dbd44b07556bee17114e1a7e1e7606546f89b6 (plain)
1
2
3
4
5
6
7
8
<div contenteditable>&nbsp;a</div>
<script>
let editor = document.querySelector("div[contenteditable]");
editor.insertBefore(document.createTextNode(""), editor.firstChild);
let selection = getSelection();
selection.collapse(editor.firstChild.nextSibling, 2);
document.execCommand("delete", false);
</script>