blob: 90fadd4827c2e4fdc644c8748df187e554d85b36 (
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
31
32
33
34
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test for shifting focus while mouse clicking on button</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<script class="testbody" type="application/javascript">
var result = "";
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
synthesizeMouseAtCenter(document.getElementById("button"), { });
is(result, "(focus button)(blur button)(focus input)", "Focus button then input");
SimpleTest.finish();
});
</script>
<button id="button" onfocus="result += '(focus button)'; document.getElementById('input').focus()"
onblur="result += '(blur button)'">Focus</button>
<input id="input" value="Test" onfocus="result += '(focus input)'"
onblur="result += '(blur input)'">
</body>
</html>
|