select-ref.html (460B)
1 <html class="reftest-wait"> 2 <head> 3 <script type="text/javascript"> 4 function finishTest() { 5 document.documentElement.removeAttribute("class"); 6 } 7 function runTest() { 8 var field = document.getElementById('field'); 9 field.focus(); 10 field.select(); 11 setTimeout(finishTest, 0); 12 } 13 </script> 14 </head> 15 <body onload="runTest()"> 16 <input id="field" type="text" value="1234"> 17 </body> 18 </html>