blob: e9345fbeed11061b1bae3cdfdcd3777c2f7f3c83 [file] [log] [blame]
<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>