mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|