Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / merge-end-1.html
blobd50c656c166db90fb2c240d9412a3d164f1b6a0e
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <div id="test" contenteditable="true"><span>foo</span></div>
6 <script src="../editing.js"></script>
7 <script src="../../resources/dump-as-markup.js"></script>
8 <script>
9 var s = window.getSelection();
10 var e = document.getElementById("test");
12 e.focus();
13 moveSelectionForwardByCharacterCommand();
14 insertHTMLCommand("<div>bar</div>baz");
16 Markup.description('This tests the last paragraph in the pasted fragment is merged with the content after the insertion position.\n'
17 + '"baz" and "oo" should be in the same paragraph below.');
18 Markup.dump('test');
20 </script>
21 </body>
22 </html>