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