6 border-left:
2px solid blue;
13 <div id=
"description">This tests to make sure that content that has the document default color is pasted as blue (or whatever the color for quoted content is) during a Paste as Quotation.
</div>
14 <div id=
"edit" contenteditable=
"true"></div>
17 edit
= document
.getElementById("edit");
18 description
= document
.getElementById("description");
20 document
.execCommand("InsertHTML", false, "<blockquote class='Apple-paste-as-quotation'><span class='Apple-style-span' style='color: black;'>This text should be blue (it should not be wrapped in a style span).</span></blockquote>");
21 if (window
.testRunner
) {
22 window
.testRunner
.dumpAsText();
23 document
.body
.innerText
= description
.innerText
+ "\n" + edit
.innerHTML
;