blob: 68cbc04258bcee2f42f716749fc0a9b03b5ab973 (
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
35
|
<!DOCTYPE html>
<html class="reftest-wait">
<style>
/* eliminate the blue glow when focusing the element. */
input {
background: none;
border: none;
outline: none;
}
</style>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script>
async function test() {
let input = document.querySelector("input");
input.setSelectionRange(input.value.length, input.value.length);
window.focus();
// Run input.onfocus
synthesizeMouseAtCenter(input, {});
// Blur
await new Promise(resolve => { SimpleTest.executeSoon(resolve); });
synthesizeMouseAtCenter(document.body, {});
// Run input.onfocus again
await new Promise(resolve => { SimpleTest.executeSoon(resolve); });
synthesizeMouseAtCenter(input, {});
// Check the result
await new Promise(resolve => { SimpleTest.executeSoon(resolve); });
document.documentElement.removeAttribute("class");
}
</script>
<body onload="SimpleTest.executeSoon(test);">
<input value="text text text text text"
onfocus="this.select();">
</body>
</html>
|