Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / 5134759.html
1 <p>This tests for a hang when pasting underlined content at the end of a paragraph.  You should see 'Hello <u>World!</u>' below.</p>
2
3 <div id="div" contenteditable="true"><div>Hello&nbsp;</div></div>
4
5 <script>
6 var sel = window.getSelection();
7 var div = document.getElementById("div");
8 sel.setPosition(div, div.childNodes.length);
9 document.execCommand("InsertHTML", false, "<span style='text-decoration: underline;'><div>World!</div></span>");
10 </script>