3 <div id=
"description">This test assures that inserting a newline in a list nested in a blockquote doesn't crash.
</div>
4 <div contenteditable=
"true" id=
"container">
5 <blockquote type=
"cite">
6 <ol><li style=
" -webkit-appearance: relevancy-level-indicator" id=
"two">TwoTwo
</li></ol>
10 li
= document
.getElementById("two");
12 selection
= window
.getSelection();
13 selection
.collapse(text
, 3);
14 document
.execCommand("InsertNewlineInQuotedContent");
15 var div
= document
.getElementById("container");
16 div
.parentNode
.removeChild(div
);
17 if (window
.testRunner
)
18 testRunner
.dumpAsText();