placeholder-type-change-2.html (445B)
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 = 'button'; 8 document.getElementById('moz').type = 'button'; 9 document.documentElement.className = ''; 10 } 11 </script> 12 <body onload='loadHandler();'> 13 <input id='i' placeholder='foo'> 14 <input id='moz' placeholder='bar'> 15 </body> 16 </html>