3 border-left:
2px solid blue;
9 <p>This tests copying/pasting less than a paragraph of quoted content. It should not appear quoted.
</p>
10 <div id=
"div" contenteditable=
"true">
13 <blockquote type=
"cite">On Tuesday, Dave wrote:
</blockquote>
14 <blockquote type=
"cite"><br></blockquote>
15 <blockquote type=
"cite">Hello World.
</blockquote>
20 internals
.settings
.setEditingBehavior('mac');
22 var sel
= window
.getSelection();
23 var div
= document
.getElementById("div");
25 sel
.modify("move", "forward", "paragraph");
26 sel
.modify("move", "forward", "paragraph");
27 sel
.modify("extend", "forward", "word");
28 document
.execCommand("Copy");
30 document
.execCommand("PasteAndMatchStyle");