Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / 5480736.html
blobc502f3db367503e9d29405e72ac7f7f9ca5c2c22
1 <html>
2 <head>
3 <style>
4 blockquote {
5 margin: 0px;
6 padding-left: 20px;
7 border-left: 1px solid black;
9 </style>
10 </head>
11 <body>
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>
15 <script>
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;
26 </script>
27 </body>
28 </html>