mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
17 lines
380 B
HTML
17 lines
380 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" onfocus="disableReftestWait();">
|
|
</body>
|
|
</html>
|