Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / table-caret-1.html
blobee137f8452df3d3dc523f3a0f76097f8d08900f6
1 <script>
2 if (window.testRunner)
3 testRunner.dumpEditingCallbacks();
4 </script>
5 <style>
6 table, td {
7 border: 1px solid #999;
9 </style>
11 <p>This tests the caret position for the caret before a block table.</p>
13 <div contenteditable="true">foo<table id="test"><tr><td>this</td></tr><tr><td>is</td></tr><tr><td>a table</td></tr></table>baz</div>
15 <script>
16 var s = window.getSelection();
17 var e = document.getElementById("test");
19 s.collapse(e, 0);
20 </script>