| border-left: 2px solid blue; |
| <p>This tests copying/pasting less than a paragraph of quoted content. It should not appear quoted.</p> |
| <div id="div" contenteditable="true"> |
| <blockquote type="cite">On Tuesday, Dave wrote:</blockquote> |
| <blockquote type="cite"><br></blockquote> |
| <blockquote type="cite">Hello World.</blockquote> |
| internals.settings.setEditingBehavior('mac'); |
| var sel = window.getSelection(); |
| var div = document.getElementById("div"); |
| sel.modify("move", "forward", "paragraph"); |
| sel.modify("move", "forward", "paragraph"); |
| sel.modify("extend", "forward", "word"); |
| document.execCommand("Copy"); |
| document.execCommand("PasteAndMatchStyle"); |