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>
3 <div id=
"div" contenteditable=
"true">
5 <tr><td>One
</td><td>Two
</td></tr>
6 <tr><td>Three
</td><td>Four
</td></tr>
11 div
= document
.getElementById("div");
13 document
.execCommand("SelectAll");
14 document
.execCommand("Indent");
15 document
.execCommand("Indent");