- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / textinput / focus_input_on_load.html
1 <html>
2   <head>
3     <script>
4       window.onload = function() {
5         document.getElementById('text_id').focus();
6       };
7     </script>
8   </head>
9   <body>
10   <input type="text" id="text_id">
11   </body>
12 </html>