chromium/chrome/test/data/focus/page_with_focus.html

<html>
<head><title>A simple page with the focus on a text edit</title></head>

<script>
  function init() {
    document.f.q.focus();
  }
</script>

<body onload="init()">

  <h1>Hello</h1>
  Search:
  <form name=f>
    <input  name=q size=55 title="Google Search" value=""><br>
  <form>

  <a href="http://www.google.com">Google</a>&nbsp;&nbsp;
  <a href="http://mail.google.com">GMail</a>&nbsp;&nbsp;
  <a href="http://maps.google.com">GMap</a>
</body>


</html>