blob: 9f292c79d1a70de919fce77dff04aed478a6a53b [file] [log] [blame]
<html>
<head>
<script>
function focusPasswordField() {
var password = document.getElementById("password");
password.focus();
}
</script>
</head>
<body>
<input type="text" autofocus/>
<input id="password" type="password" />
</body>
</html>