mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
455 B
HTML
19 lines
455 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<!-- Test: input element in search state looks like in text state -->
|
||
|
<script type="text/javascript">
|
||
|
function setToSearch()
|
||
|
{
|
||
|
document.getElementById('i').type = 'search';
|
||
|
}
|
||
|
function disableReftestWait()
|
||
|
{
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<body onload="setToSearch(); disableReftestWait();">
|
||
|
<input type='checkbox' id='i'>
|
||
|
</body>
|
||
|
</html>
|