7 border-left:
1px solid black;
12 <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>
13 <div id=
"edit" contentEditable=
"true"><blockquote id=
"blockquote" class=
"webkit-indent-blockquote">hd
</blockquote></div>
16 if (window
.testRunner
)
17 window
.testRunner
.dumpAsText();
19 blockquote
= document
.getElementById("blockquote");
20 text
= blockquote
.firstChild
;
22 window
.getSelection().collapse(text
, 1);
23 document
.execCommand("InsertHTML", false, "ello worl");
24 if (window
.testRunner
)
25 document
.body
.innerText
= document
.getElementById("description").innerText
+ "\n" + document
.getElementById("edit").innerHTML
;