1128787.html (315B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Bug 1128787</title> 5 </head> 6 <body> 7 <input type="button"/> 8 <script> 9 window.onload = function () { 10 document.designMode = "on"; 11 } 12 var input = document.getElementsByTagName("input")[0]; 13 input.focus(); 14 input.type = "text"; 15 </script> 16 </body> 17 </html>