Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / 5081257-1.html
blobb08c8f931083ccc465046364ce45c7c297b3fc0c
1 <html>
2 <body contenteditable="true">
3 <p>This tests for setting the selection at a position inside the document when the document node is non-editable and the document's body element *is* editable. The expected behavior is to create a selection at [body, 0]. There should be a caret at the start of this paragraph.</p>
5 </body>
6 <script>
7 var sel = window.getSelection();
8 sel.collapse(document, 0);
9 </script>
10 </html>