chromium/third_party/blink/web_tests/editing/execCommand/indent-empty-table-cell.html

<p>This tests for a crash when indenting an empty TD.</p>
<div contenteditable="true">
<table>
  <tbody>
    <tr>
      <td id ="indent"></td>
    </tr>
  </tbody>
</table>
</div>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
indent = document.getElementById("indent");
window.getSelection().collapse(indent, 0);
document.execCommand("indent");
</script>