- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / focus / page_with_focus.html
1 <html>
2 <head><title>A simple page with the focus on a text edit</title></head>
3
4 <script>
5   function init() {
6     document.f.q.focus();
7   }
8 </script>
9
10 <body onload="init()">
11
12   <h1>Hello</h1>
13   Search:
14   <form name=f>
15     <input  name=q size=55 title="Google Search" value=""><br>
16   <form>
17
18   <a href="http://www.google.com">Google</a>&nbsp;&nbsp;
19   <a href="http://mail.google.com">GMail</a>&nbsp;&nbsp;
20   <a href="http://maps.google.com">GMap</a>
21 </body>
22
23
24 </html>