blob: 2e8a5057234f2c252b5a3d395fd692faf11329f7 [file] [log] [blame]
<style>
blockquote {
color: blue;
border-left: 2px solid blue;
margin: 0px;
padding: 0 0 0 20px;
}
</style>
<p>This tests pasting a nested blockquote into a blockquote. The first line below should be singly-blockquoted, and the second should be doubly-quoted.</p>
<div contenteditable="true"><blockquote type='cite' id="block">One</blockquote></div>
<script>
var sel = window.getSelection();
var block = document.getElementById("block");
sel.setPosition(block, 3);
document.execCommand("InsertHTML", false, "<span><blockquote type='cite'><blockquote type='cite'><div>Two</div><div>Three</div></blockquote></blockquote></span>");
</script>