chromium/third_party/blink/web_tests/editing/execCommand/indent-right-after-table.html

<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.testRunner)
    testRunner.dumpAsText();

var e = document.getElementById("test");
var s = window.getSelection();
s.collapse(e, 1);
document.execCommand("Indent", false, null);

</script>