2 Test for a bug where an assertion in the RemoveNodeCommand constructor failed
3 when deleting a
<tt><br
></tt> between a block and a blockquote.
6 The test has passed if the assertion failure did not occur.
8 <div contenteditable
style=
"border: solid red;">
9 <div></div><br id=
"br"><blockquote type=
"cite">blockquote
</blockquote>
12 if (window
.testRunner
)
13 testRunner
.dumpAsText();
15 var br
= document
.getElementById("br");
16 var range
= document
.createRange();
18 range
.setStartBefore(br
);
19 range
.setEndAfter(br
);
20 getSelection().addRange(range
);
21 document
.execCommand("Delete", false);