placeholder-type-change-1.html (469B)
1 <!DOCTYPE html> 2 <html class='reftest-wait'> 3 <link rel='stylesheet' type='text/css' href='style.css'> 4 <script> 5 function loadHandler() 6 { 7 document.getElementById('i').type = 'text'; 8 document.getElementById('moz').type = 'text'; 9 document.documentElement.className = ''; 10 } 11 </script> 12 <body onload='loadHandler();'> 13 <input type='button' id='i' placeholder='foo'> 14 <input type='button' id='moz' placeholder='bar'> 15 </body> 16 </html>