summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/focus-inputs.html
blob: 9f292c79d1a70de919fce77dff04aed478a6a53b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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>