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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<html>
<head>
<title>Test for IME state on plugin</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script src="file_ime_state_test_helper.js"></script>
<link rel="stylesheet" href="chrome://mochikit/content/tests/SimpleTest/test.css">
</head>
<body>
<input>
<object type="application/x-test"></object>
<script>
"use strict";
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(() => {
const tipWrapper = new TIPWrapper(window);
const plugin = document.querySelector("object");
// Plugins are not supported and their elements should not accept focus;
// therefore, IME should not enable when we play with it.
document.activeElement?.blur();
is(
window.windowUtils.IMEStatus,
Ci.nsIDOMWindowUtils.IME_STATUS_DISABLED,
"IME enabled state should be disabled when no element has focus"
);
ok(
!tipWrapper.IMEHasFocus,
"IME should not have focus when no element has focus"
);
plugin.focus();
is(
window.windowUtils.IMEStatus,
Ci.nsIDOMWindowUtils.IME_STATUS_DISABLED,
"IME enabled state should be disabled when an <object> for plugin has focus"
);
ok(
!tipWrapper.IMEHasFocus,
"IME should not have focus when an <object> for plugin has focus"
);
plugin.blur();
is(
window.windowUtils.IMEStatus,
Ci.nsIDOMWindowUtils.IME_STATUS_DISABLED,
"IME enabled state should be disabled when an <object> for plugin gets blurred"
);
ok(
!tipWrapper.IMEHasFocus,
"IME should not have focus when an <object> for plugin gets blurred"
);
plugin.focus();
is(
window.windowUtils.IMEStatus,
Ci.nsIDOMWindowUtils.IME_STATUS_DISABLED,
"IME enabled state should be disabled when an <object> for plugin gets focused again"
);
ok(
!tipWrapper.IMEHasFocus,
"IME should not have focus when an <object> for plugin gets focused again"
);
plugin.remove();
is(
window.windowUtils.IMEStatus,
Ci.nsIDOMWindowUtils.IME_STATUS_DISABLED,
"IME enabled state should be disabled when focused <object> for plugin is removed from the document"
);
ok(
!tipWrapper.IMEHasFocus,
"IME should not have focus when focused <object> for plugin is removed from the document"
);
document.querySelector("input").focus();
is(
window.windowUtils.IMEStatus,
Ci.nsIDOMWindowUtils.IME_STATUS_ENABLED,
"IME enabled state should be enabled after <input> gets focus"
);
ok(
tipWrapper.IMEHasFocus,
"IME should have focus after <input> gets focus"
);
SimpleTest.finish();
});
</script>
</body>
</html>
|