blob: 77e4cf270c4584790e5739cf7c98f4729cd6c717 [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpEditingCallbacks();
</script>
<p>This is a test to make sure that a placeholder, even one without our special class on it, is removed only when it has been collapsed away or when it has been displaced by pasted content.</p>
<p>Placeholders with our special class can, through bugs in deletion, be inserted into the document unnecessarily. Once that happens, we don't want to make matters worse by removing them if they are acting as line breaks instead of placeholders.</p>
<div id="test" contenteditable="true">First<br class='webkit-block-placeholder'>Second paragraph.</div>
<script>
if (window.internals)
internals.settings.setEditingBehavior("mac");
var s = window.getSelection();
var e = document.getElementById("test");
s.setPosition(e, 0);
s.modify("move", "forward", "word");
document.execCommand("InsertHTML", false, " paragraph.");
</script>