| <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) | |
| window.testRunner.dumpAsText(); | |
| indent = document.getElementById("indent"); | |
| window.getSelection().collapse(indent, 0); | |
| document.execCommand("indent"); | |
| </script> |