6 border-left:
2px solid blue;
13 div
= document
.getElementById("edit");
15 document
.execCommand("InsertHTML", false, "<blockquote class='Apple-paste-as-quotation'><span class='Apple-style-span' style='color: black;'><span class='Apple-style-span' style='color: red;'>This text should be red (it should be wrapped in a style span).</span></span></blockquote>");
16 if (window
.testRunner
) {
17 window
.testRunner
.dumpAsText();
18 document
.body
.innerText
= document
.getElementById("description").innerText
+ "\n" + div
.innerHTML
;
23 <body onload=
"runTest();">
24 <div id=
"description">This tests to make sure that content that is colored by the user is pasted with that color during a Paste as Quotation.
</div>
25 <div id=
"edit" contenteditable=
"true"></div>