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