| <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.setPosition(e, 1); | |
| document.execCommand("Indent", false, null); | |
| </script> |