Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 input { | |
| 4 position: absolute; | |
| 5 top: 0; | |
| 6 left: 30px; | |
| 7 height: 50px; | |
| 8 width: 200px; | |
| 9 } | |
| 10 </style> | |
| 11 | |
| 12 <input id="input" type="text"> | |
| 13 <script> | |
| 14 document.getElementById('input').focus(); | |
| 15 </script> | |
| OLD | NEW |