mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
504 B
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 url element -->
|
||
|
<script type="text/javascript">
|
||
|
function setToCheckbox()
|
||
|
{
|
||
|
document.getElementById('i').type='checkbox';
|
||
|
}
|
||
|
function disableReftestWait()
|
||
|
{
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<body onload="setToCheckbox(); disableReftestWait();">
|
||
|
<input type='url' id='i'>
|
||
|
</body>
|
||
|
</html>
|