Source code

Revision control

Copy as Markdown

Other Tools

<!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' class='ref' onfocus='focusHandler();'>foo</textarea>
<textarea id='moz' class='ref' onfocus='focusHandlerMoz();'>bar</textarea>
</body>
</html>