1 <div id=
"description">This tests to see if indenting inside a table cell breaks the table structure. The indented blockquote should be placed inside the table cell where the Indent operation was performed and the table structure should remain unchanged.
</div>
2 <div id=
"edit" contenteditable=
"true">
3 <table border=
"1"><tr><td id=
"td">hello
</td></tr></table>
8 window
.testRunner
.dumpAsText();
10 td
= document
.getElementById("td");
12 window
.getSelection().collapse(text
, 1);
13 document
.execCommand("Indent");
15 document
.body
.innerText
= document
.getElementById("description").innerText
+ "\n" + document
.getElementById("edit").innerHTML
;