blob: 01d3d7c91aa4dc10c59e5175a0ebe3163081a926 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function runTest() {
document.designMode="on";
document.open();
window.getSelection().addRange(document.createRange());
document.execCommand("Delete", false, null);
document.body.innerHTML = 'This test ensures WebKit does not crash when executing Delete in an empty document.<br><br>PASS';
}
</script>
</head>
<body onload="runTest()"></body>
</html>