6 border-left:
2px solid blue;
12 <p>This tests to make sure that breaking a quoted list doesn't renumber the list. You should see a list broken in two below, the list items numbered
1,
2,
2,
3,
4. Two list items will be numbered '
2' because the original item '
2' was split.
</p>
13 <div contenteditable=
"true">
14 <blockquote type=
"cite">
17 <li id=
"two">TwoTwo
</li>
25 li
= document
.getElementById("two");
27 selection
= window
.getSelection();
28 selection
.collapse(text
, 3);
29 document
.execCommand("InsertNewlineInQuotedContent");