Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / deleting / 4916235-1.html
1 <p>This tests for a bug in moveParagraphs that would cause an empty paragraph to collapse.</p>
2 <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>
3
4 <script>
5 if (window.testRunner)
6     window.testRunner.dumpAsText();
7     
8 var div = document.getElementById("div");
9 var sel = window.getSelection();
10
11 sel.collapse(div, 0);
12 sel.modify("move", "forward", "character");
13 sel.modify("extend", "forward", "line");
14 document.execCommand("Delete");
15 </script>