Sign in
webkit
/
WebKit
/
e27614df2f37ba9cd62de8344bb8d5b7377411af
/
.
/
Tools
/
TestWebKitAPI
/
Tests
/
WebKitCocoa
/
focus-inputs.html
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>