| border-left: 1px solid black; |
| <div id="description">This tests for a bug where copying a word in indented text and then pasting it into indented text would create an extraneous line break. You should see "hello world" below, all in one indented paragraph.</div> |
| <div id="edit" contentEditable="true"><blockquote id="blockquote" class="webkit-indent-blockquote">hd</blockquote></div> |
| window.testRunner.dumpAsText(); |
| blockquote = document.getElementById("blockquote"); |
| text = blockquote.firstChild; |
| window.getSelection().setPosition(text, 1); |
| document.execCommand("InsertHTML", false, "ello worl"); |
| document.body.innerText = document.getElementById("description").innerText + "\n" + document.getElementById("edit").innerHTML; |