Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / displaced-generic-placeholder.html
1 <script>
2 if (window.testRunner)
3      testRunner.dumpEditingCallbacks();
4 </script>
5 <p>This is a test to make sure that a placeholder, even one that doesn't have our special class on it, is removed when it is displaced by pasted content.</p>
6 <div id="test" contenteditable="true"><br></div>
7
8 <script>
9 var s = window.getSelection();
10 var e = document.getElementById("test");
11
12 s.setPosition(e, 0);
13 document.execCommand("InsertHTML", false, "First paragraph.<div>Second paragraph.</div>");
14 </script>