gecko/layout/reftests/forms/input/tel/input-tel-2.html

19 lines
447 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: input element in telephone state looks like in text state -->
<script type="text/javascript">
function setToTel()
{
document.getElementById('i').type='tel';
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setToTel(); disableReftestWait();">
<input type='checkbox' id='i'>
</body>
</html>