7 testRunner
.dumpAsText();
9 document
.getElementsByTagName("div")[0].focus();
11 var sel
= window
.getSelection();
12 var paragraphs
= document
.getElementsByTagName("p");
13 sel
.setBaseAndExtent(paragraphs
[0].lastChild
, 0, paragraphs
[0].lastChild
, 2);
14 document
.execCommand("InsertHTML", false, '<p>No crash!</p>');
15 sel
.setBaseAndExtent(paragraphs
[1].lastChild
, 2, paragraphs
[1].lastChild
, 4);
16 document
.execCommand("InsertHTML", false, '<p>No crash!</p>');
17 sel
.setBaseAndExtent(paragraphs
[2].lastChild
, 4, paragraphs
[2].lastChild
, 6);
18 document
.execCommand("InsertHTML", false, '<p>No crash!</p>');
19 sel
.setBaseAndExtent(paragraphs
[3].lastChild
, 0, paragraphs
[3].lastChild
, 6);
20 document
.execCommand("InsertHTML", false, '<p>No crash!</p>');
24 <body onload=
"test()">
26 <p><span style=
"white-space: pre"> </span>select
</p>
27 <p><span style=
"white-space: pre"> </span>select
</p>
28 <p><span style=
"white-space: pre"> </span>select
</p>
29 <p><span style=
"white-space: pre"> </span>select
</p>