blob: 13c4b5450447ba9dc7e12ac8fd10e013ec256abd [file] [log] [blame]
<html>
<body onload="test()"></body>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
function test()
{
document.open();
document.designMode = "on";
var selection = window.getSelection();
selection.addRange(document.createRange());
document.execCommand("Delete");
document.close();
document.body.appendChild(document.createTextNode('Deleting an empty selection should have no effect.'));
}
</script>
</html>