blob: a1b7ebace463ffcabb5d43b3f369b13f592bfd5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!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('t').blur();
}
function blurHandler()
{
document.getElementById('moz').focus();
}
function focusHandlerMoz()
{
document.getElementById('moz').blur();
}
function blurHandlerMoz()
{
document.documentElement.className = '';
}
</script>
<body onload='loadHandler();'>
<textarea id='t' placeholder='foo' onfocus='focusHandler();' onblur='blurHandler();'></textarea>
<textarea id='moz' placeholder='bar' onfocus='focusHandlerMoz();' onblur='blurHandlerMoz();'></textarea>
</body>
</html>
|