chromium/third_party/blink/web_tests/editing/deleting/4916235-1.html

<p>This tests for a bug in moveParagraphs that would cause an empty paragraph to collapse.</p>
<div id="div" contenteditable="true">There should be an empty paragraph below this one.<div>There should be an empty paragraph below this one.</div><br>There should be an empty paragraph above this one.</div>

<script>
if (window.testRunner)
    testRunner.dumpAsText();
    
var div = document.getElementById("div");
var sel = window.getSelection();

sel.collapse(div, 0);
sel.modify("move", "forward", "character");
sel.modify("extend", "forward", "line");
document.execCommand("Delete");
</script>