4 border-left:
1px solid blue;
10 <div>This tests for a bug where hitting return at the end of a paragraph inside a blockquote would create an extraneous empty quoted paragraph. You should see
"line one" (quoted),
"" (unquoted), and
"line two" (quoted) below.
</div>
11 <div id=
"div" contentEditable=
"true"><blockquote type=
"cite"><div id=
"test">line one
<br>line two
</div></blockquote></div>
13 if (window
.testRunner
)
14 window
.testRunner
.dumpAsText();
15 test
= document
.getElementById("test");
16 window
.getSelection().collapse(test
, 1);
17 document
.execCommand("InsertNewlineInQuotedContent");
18 if (window
.testRunner
) {
19 div
= document
.getElementById("div");
20 div
.innerText
= div
.innerHTML
;