blob: c90f285db625820b3c5d59f1581afc5ca000cf6a [file] [log] [blame]
<p>This tests crash on indenting at immediately right to a table.</p>
<div id="test" contenteditable="true"><table border=1><tbody><tr><td>hello</td></tr></tbody></table></div>
<script type="text/javascript">
if (window.layoutTestController)
layoutTestController.dumpAsText();
var e = document.getElementById("test");
var s = window.getSelection();
s.setPosition(e, 1);
document.execCommand("Indent", false, null);
</script>