mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
389 B
HTML
17 lines
389 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<script type="text/javascript">
|
||
|
function focusInput()
|
||
|
{
|
||
|
document.getElementById('t1').focus();
|
||
|
}
|
||
|
function disableReftestWait()
|
||
|
{
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
<body onload="focusInput();">
|
||
|
<input id='t1' type="text" readonly onfocus="disableReftestWait();">
|
||
|
</body>
|
||
|
</html>
|