4 <script src=
"../../resources/dump-as-markup.js"></script>
8 border-left:
2px solid blue;
14 <body contenteditable
>
16 <p>This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted.
</p>
18 <blockquote type=
"cite">one
<br>two
<br>three
<br id=
"endContent"><br><br></blockquote>
24 var sel
= window
.getSelection();
25 var endContent
= document
.getElementById("endContent");
26 sel
.collapse(endContent
.nextSibling
, 0);
27 document
.execCommand("InsertHTML", false, "<blockquote type='cite'><div>two</div></blockquote>");
29 Markup
.description(document
.getElementsByTagName('p')[0].innerText
);
30 Markup
.dump(document
.getElementsByTagName('div')[1]);