Files
2018-02-02 04:16:08 -05:00

20 lines
508 B
HTML

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