mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-15 03:31:24 +00:00
18 lines
494 B
HTML
18 lines
494 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<link rel='stylesheet' type='text/css' href='placeholder-style.css'>
|
||
|
<script type="text/javascript">
|
||
|
function focusInput()
|
||
|
{
|
||
|
document.getElementById('t1').focus();
|
||
|
}
|
||
|
function disableReftestWait()
|
||
|
{
|
||
|
document.documentElement.className = '';
|
||
|
}
|
||
|
</script>
|
||
|
<body onload="focusInput();">
|
||
|
<input id='t1' type="text" class="placeholder" value="my placeholder" onfocus="disableReftestWait();">
|
||
|
</body>
|
||
|
</html>
|