Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-right-after-table.html
blobf78995835f8ec26a167a50f6cd2287e94d74bed2
1 <p>This tests crash on indenting at immediately right to a table.</p>
2 <div id="test" contenteditable="true"><table border=1><tbody><tr><td>hello</td></tr></tbody></table></div>
4 <script type="text/javascript">
6 if (window.testRunner)
7 testRunner.dumpAsText();
9 var e = document.getElementById("test");
10 var s = window.getSelection();
11 s.collapse(e, 1);
12 document.execCommand("Indent", false, null);
14 </script>