blob: 59ef5866e03e2880886bf210c2cb5f20688821ed [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
</head>
<body>
<p id="description">Focus the field, focus away, then focus the field again.</p>
<div>
<input id=i1 placeholder="Placeholder">
<script>
var i1 = document.getElementById('i1');
i1.focus();
i1.blur();
i1.focus();
</script>
</body>
</html>