blob: 380f50f102c7048b4af5a6c391ae4915adaf83fa [file] [log] [blame]
<div id="description">This tests to see if deleting an input element that starts at the start of a block adds an extra placeholder. You should see a single placeholder in the block below.</div>
<div id="edit" contentEditable="true"><input type="text"><br></div>
<script>
if (window.layoutTestController)
window.layoutTestController.dumpAsText();
edit = document.getElementById("edit");
edit.focus();
document.execCommand("SelectAll");
document.execCommand("Delete");
if (window.layoutTestController)
document.body.innerText = edit.innerHTML;
</script>