blob: 50b49a581b9a5ce032db7c5d2ebe02cfda94eb09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<html>
<body onload="load()">
This frame should get the focus.
<input id="box"></input>
<script>
function load()
{
document.getElementById("box").focus();
}
</script>
</body>
</html>
|