2.html (443B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <!-- Test: input element in url state looks like in text state --> 4 <script type="text/javascript"> 5 function setToURL() 6 { 7 document.getElementById('i').type = 'url'; 8 } 9 function disableReftestWait() 10 { 11 document.documentElement.className = ''; 12 } 13 </script> 14 15 <body onload="setToURL(); disableReftestWait();"> 16 <input type='checkbox' id='i'> 17 </body> 18 </html>