1 <p>This tests for a crash when pasting content into a table cell. The table cell has some collapsed whitespace at the end of it that tickled the crash. You should see 'Hello World' in the table cell below.
</p>
2 <div contenteditable=
"true">
13 td
= document
.getElementById("td");
15 sel
= window
.getSelection();
16 sel
.collapse(text
, 7);
17 document
.execCommand("InsertHTML", false, "orld");