Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / select-element-paragraph-boundary.html
blobf45eb97abc0a1ba9eea1d7c253d0529cd53cd51d
1 <script>
2 if (window.testRunner)
3 testRunner.dumpEditingCallbacks();
4 </script>
5 <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>
8 <script>
9 var sel = window.getSelection();
10 var div = document.getElementById("div");
12 sel.collapse(div, 0);
13 sel.modify("move", "forward", "paragraphBoundary");
14 </script>