blob: 69318b626ff81bc45c6cdcbe716f75c8c16f12b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!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>
|