Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / merge-end-1.html
1 <script src="../../../resources/dump-as-markup.js"></script>
2 <!DOCTYPE html>
3 <html>
4 <body>
5 <div id="test" contenteditable="true"><span>foo</span></div>
6
7 <script src="../editing.js"></script>
8 <script src="../../resources/dump-as-markup.js"></script>
9 <script>
10 var s = window.getSelection();
11 var e = document.getElementById("test");
12
13 e.focus();
14 moveSelectionForwardByCharacterCommand();
15 insertHTMLCommand("<div>bar</div>baz");
16
17 Markup.description('This tests the last paragraph in the pasted fragment is merged with the content after the insertion position.\n'
18 + '"baz" and "oo" should be in the same paragraph below.');
19 Markup.dump('test');
20
21 </script>
22 </body>
23 </html>