blob: 7ca87c09ee2407ab2aea197d8384151686661c97 [file] [log] [blame]
ggaren3428b382006-11-03 16:51:39 +00001<script>
rniwa@webkit.org14f6b5b2012-06-13 08:51:53 +00002if (window.testRunner)
3 testRunner.dumpEditingCallbacks();
ggaren3428b382006-11-03 16:51:39 +00004</script>
justing0e8af8d2006-11-02 03:52:33 +00005<p>This tests paragraphBoundary selection navigation. The caret should be at the end of the paragraph below, just after the select box.</p>
6<div id="div" contenteditable="true"><select><option>1</option></select></div>
7
8<script>
9var sel = window.getSelection();
10var div = document.getElementById("div");
11
12sel.setPosition(div, 0);
13sel.modify("move", "forward", "paragraphBoundary");
rniwa@webkit.org14f6b5b2012-06-13 08:51:53 +000014</script>