mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
335 B
HTML
15 lines
335 B
HTML
|
<!DOCTYPE>
|
||
|
<html class="reftest-wait">
|
||
|
<script>
|
||
|
function onfocusHandler()
|
||
|
{
|
||
|
i.disabled = true;
|
||
|
i.disabled = false;
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
<body onload="document.getElementById('i').focus();">
|
||
|
<input id='i' onfocus='setTimeout(onfocusHandler,0);'>
|
||
|
</body>
|
||
|
</html>
|