placeholder-focus-ref.html (494B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <link rel='stylesheet' type='text/css' href='placeholder-style.css'> 4 <script type="text/javascript"> 5 function focusInput() 6 { 7 document.getElementById('t1').focus(); 8 } 9 function disableReftestWait() 10 { 11 document.documentElement.className = ''; 12 } 13 </script> 14 <body onload="focusInput();"> 15 <input id='t1' type="text" class="placeholder" value="my placeholder" onfocus="disableReftestWait();"> 16 </body> 17 </html>