7 border-left:
2px solid blue;
14 <div id=
"div" contenteditable=
"true">This should not be blockquoted. This should not be blockquoted.
</div>
15 <script src=
"../../resources/dump-as-markup.js"></script>
18 internals
.settings
.setEditingBehavior('mac');
20 Markup
.description("This tests pasting a blockquote into the middle of a paragraph.");
22 var sel
= window
.getSelection();
23 var div
= document
.getElementById("div");
26 sel
.modify("move", "forward", "word");
27 sel
.modify("move", "forward", "word");
28 sel
.modify("move", "forward", "word");
29 sel
.modify("move", "forward", "word");
30 sel
.modify("move", "forward", "word");
31 sel
.modify("move", "forward", "character");
32 document
.execCommand("InsertHTML", false, "<blockquote type='cite'> This should not be blockquoted.<br>This should be blockquoted.<br>This should not be blockquoted.</blockquote>");