зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
567 B
HTML
23 строки
567 B
HTML
<!DOCTYPE html>
|
|
<html class='reftest-wait'>
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<script>
|
|
function loadHandler()
|
|
{
|
|
document.getElementById('i').focus();
|
|
}
|
|
function focusHandler()
|
|
{
|
|
document.getElementById('moz').focus();
|
|
}
|
|
function focusHandlerMoz()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
<body onload='loadHandler();'>
|
|
<input id='i' placeholder='foo' onfocus='focusHandler();'>
|
|
<input id='moz' placeholder='bar' onfocus='focusHandlerMoz();'>
|
|
</body>
|
|
</html>
|