placeholder-removal.html (475B)
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').removeAttribute('placeholder'); 8 document.getElementById('moz').removeAttribute('placeholder'); 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>