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