22 lines
595 B
HTML
22 lines
595 B
HTML
<!DOCTYPE html>
|
|
<html class='reftest-wait'>
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<script>
|
|
function loadHandler()
|
|
{
|
|
document.getElementById('t').focus();
|
|
}
|
|
function focusHandler()
|
|
{
|
|
document.getElementById('moz').focus();
|
|
}
|
|
function focusHandlerMoz()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
<body onload='loadHandler();'>
|
|
<textarea id='t' placeholder='foo' onfocus='focusHandler();'></textarea>
|
|
<textarea id='moz' placeholder='bar' onfocus='focusHandlerMoz();'></textarea>
|
|
</body>
|
|
</html>
|