Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / paste-blockquote-after-blockquote.html
blob109edcc7c5f5f79b6ff22603a05a796afa6b1276
1 <style>
2 blockquote {
3 color: blue;
4 border-left: 2px solid blue;
5 margin: 0px;
6 padding: 0 0 0 20px;
8 </style>
10 <p>This tests pasting a blockquote after another blockquote.</p>
11 <div id="div" contenteditable="true"><blockquote type='cite'>Line 1</blockquote><br></div>
13 <script>
14 var sel = window.getSelection();
15 var div = document.getElementById("div");
17 sel.collapse(div, 1);
18 document.execCommand("InsertHTML", false, "<blockquote type='cite'>Line 2</blockquote>");
19 </script>