blob: 6de56d8367c1d32a1976a7c725949b69f940298c [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpEditingCallbacks();
</script>
<style>
table, td {
border: 1px solid #999;
}
</style>
<p>This tests the caret position for the caret after an inline table.</p>
<div contenteditable="true">foo<table style="display:inline-table" id="test"><tr><td>this</td></tr><tr><td>is</td></tr><tr><td>a table</td></tr></table>baz</div>
<script>
var s = window.getSelection();
var e = document.getElementById("test");
s.collapse(e, e.childNodes.length);
</script>