Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / mixed-editability-5.html
blobbc0a2b752731102e20458ea862aeedd41fa199a4
1 <script>
2 if (window.testRunner)
3 testRunner.dumpEditingCallbacks();
4 </script>
5 <p>This tests moving the caret forward through content of mixed editability. The caret should move down one line from the editable piece to the editable piece that's embedded in a non-editable piece.</p>
7 <div contenteditable="true">
8 editable
9 <table border="1" contenteditable="false"><tr><td contenteditable="true" id="test">editable</td></tr></table>
10 editable
11 </div>
13 <script>
14 var e = document.getElementById("test");
15 var s = window.getSelection();
17 s.collapse(e, 0);
19 s.modify("move", "forward", "documentBoundary");
20 </script>