| <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> |