7 border-left:
2px solid blue;
15 <div contenteditable=
"true" id=
"editable"><blockquote type='cite'
id=
"block">One
</blockquote></div>
17 <script src=
"../../resources/dump-as-markup.js"></script>
19 var sel
= window
.getSelection();
20 var block
= document
.getElementById("block");
22 sel
.collapse(block
, block
.childNodes
.length
);
23 document
.execCommand("InsertHTML", false, "<span><blockquote type='cite'><blockquote type='cite'><div>Two</div><div>Three</div></blockquote></blockquote></span>");
24 Markup
.description("This tests pasting a nested blockquote into a blockquote. "
25 + "The text \"One\" should be singly-blockquoted, and the text \"Two Three\" should be doubly-blockquoted. "
26 + "However, currently \"One Two\" is singly-blockquoted and \"Three\" is doubly-blockquoted. See bug 61807.");
27 Markup
.dump(editable
);