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

20 lines
504 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: when switching to another type, the input element should not look
like an input tel element -->
<script type="text/javascript">
function setToCheckbox()
{
document.getElementById('i').type='checkbox';
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setToCheckbox(); disableReftestWait();">
<input type='tel' id='i'>
</body>
</html>