3 <script src=
"../../resources/dump-as-markup.js"></script>
7 border-left:
2px solid blue;
14 <p id=
"description">This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted.
</p>
15 <div id=
"test" contenteditable=
"true"><blockquote type='cite'
id=
"block">One
</blockquote></div>
17 var sel
= window
.getSelection();
18 var block
= document
.getElementById("block");
20 sel
.collapse(block
, block
.childNodes
.length
);
21 document
.execCommand("InsertHTML", false, "<span><blockquote type='cite'><div>Two</div><div>Three</div></blockquote></span>");
23 Markup
.description(document
.getElementById('description').textContent
);