2.html 443 B

12345678910111213141516171819
  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. <body onload="setToURL(); disableReftestWait();">
  15. <input type='checkbox' id='i'>
  16. </body>
  17. </html>