upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / indent-empty-table-cell.html
1 <p>This tests for a crash when indenting an empty TD.</p>
2 <div contenteditable="true">
3 <table>
4   <tbody>
5     <tr>
6       <td id ="indent"></td>
7     </tr>
8   </tbody>
9 </table>
10 </div>
11 <script>
12 if (window.layoutTestController)
13     window.layoutTestController.dumpAsText();
14 indent = document.getElementById("indent");
15 window.getSelection().setPosition(indent, 0);
16 document.execCommand("indent");
17 </script>