Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / 5099303.html
blobf1d4a4c2cbaae5155aaad97163438a43772d7e38
1 <p>This tests for a bug where deleting from the start of a paragraph after a table would leave the caret in the wrong position.</p>
2 <div contenteditable="true"><table border="1"><tr><td>The caret should be between these two parenthesis: (</td><td contenteditable="false"></td></tr></table><div id="div">).</div></div>
4 <script>
5 var sel = window.getSelection();
6 var div = document.getElementById("div");
7 sel.collapse(div, 0);
8 </script>