blob: 76c870b1c9487cc85458647cfe92cc0cecce069c [file] [log] [blame]
<html>
<script type="text/javascript">
function autofocus() {
document.getElementById('inputfield').focus();
}
window.onload = autofocus;
</script>
<body>
<p>This page has a auto focused input field.</p>
<input type="text" id="inputfield" />
</body>
</html>