3.html (504B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <!-- Test: when switching to another type, the input element should not look 4 like an input tel element --> 5 <script type="text/javascript"> 6 function setToCheckbox() 7 { 8 document.getElementById('i').type='checkbox'; 9 } 10 function disableReftestWait() 11 { 12 document.documentElement.className = ''; 13 } 14 </script> 15 16 <body onload="setToCheckbox(); disableReftestWait();"> 17 <input type='tel' id='i'> 18 </body> 19 </html>