blob: 6cd276f84d549a1b3db228329be6570725e5131a [file] [log] [blame]
<html>
<head>
<script type="text/javascript">
<!--
function onLoad() {
document.getElementById("input").focus();
document.getElementById("input").style.visibility = 'hidden';
}
//-->
</script>
</head>
<body onload="onLoad()">
<div>
<p>All of this text should be visible (The text should read: "All of this text should be visible")</p>
</div>
<div>
<form method="get">
<input type="text" id="input" size="40" value="123"/>
</form>
</div>
</body>
</html>