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