blob: 2af30b2eade5011aca91f62ae7a3f8f85978e5b3 [file] [log] [blame]
<head>
<script>
function runTest() {
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
window.setTimeout(afterDelay, 20);
}
function afterDelay() {
forCaret = document.getElementById("forCaret");
window.getSelection().setPosition(forCaret, 0);
document.execCommand("Delete");
if (window.testRunner) {
document.body.innerText = document.getElementById("description").innerText + "\n\n" + document.getElementById("edit").innerHTML;
testRunner.notifyDone();
}
}
</script>
</head>
<body onLoad="runTest();">
<div id="description">This tests to make sure that placing the caret in an empty paragraph after a block image and pressing delete removes the empty paragraph. The editable region below should contain only an image followed by a caret.</div>
<div id="edit" contentEditable="true"><img src="../resources/abe.png" style="display:block; padding: 3px;"><div id="forCaret"><br></div></div>
</body>