Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / 5521237.html
1 <p>This tests for a bug when pasting a word copied from TextEdit after a regular, breaking space.</p>
2 <div contenteditable="true" id="div">Everything n this editable region should be in one paragraph.</div>
3
4 <script>
5 if (window.testRunner)
6     window.testRunner.dumpAsText();
7     
8 div = document.getElementById("div");
9 text = div.firstChild;
10 sel = window.getSelection();
11
12 sel.setPosition(text, 11);
13 document.execCommand("InsertHTML", false, "<div>i</div>")
14 </script>