upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 5481523.html
1 <p>This tests for a hang when indenting a fully selected table twice.  You should see a twice indented table, with four cells, below.</p>
2
3 <div id="div" contenteditable="true">
4     <table border="1">
5         <tr><td>One</td><td>Two</td></tr>
6         <tr><td>Three</td><td>Four</td></tr>
7     </table>
8 </div>
9
10 <script>
11 div = document.getElementById("div");
12 div.focus();
13 document.execCommand("SelectAll");
14 document.execCommand("Indent");
15 document.execCommand("Indent");
16 </script>