blob: 28f0f8f65032472d2acb438781f1444a83a8bc6d [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
</head>
<body>
<p id="description">Focus field with a placeholder, then type, then delete all text.</p>
<div>
<textarea id=i1 placeholder="Placeholder"></textarea>
<script>
var i1 = document.getElementById('i1');
i1.focus();
document.execCommand("InsertText", false, "Text");
document.execCommand("Delete");
document.execCommand("Delete");
document.execCommand("Delete");
document.execCommand("Delete");
</script>
</body>
</html>