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
|
function test() {
waitForExplicitFinish();
let searchBar = BrowserSearch.searchBar;
searchBar.focus();
let DOMWindowUtils = EventUtils._getDOMWindowUtils();
is(DOMWindowUtils.IMEStatus, DOMWindowUtils.IME_STATUS_ENABLED,
"IME should be available when searchbar has focus");
let searchPopup = document.getElementById("PopupSearchAutoComplete");
searchPopup.addEventListener("popupshown", function (aEvent) {
searchPopup.removeEventListener("popupshown", arguments.callee);
setTimeout(function () {
is(DOMWindowUtils.IMEStatus, DOMWindowUtils.IME_STATUS_ENABLED,
"IME should be available even when the popup of searchbar is open");
searchPopup.addEventListener("popuphidden", function (aEvent) {
searchPopup.removeEventListener("popuphidden", arguments.callee);
setTimeout(function () {
is(DOMWindowUtils.IMEStatus, DOMWindowUtils.IME_STATUS_DISABLED,
"IME should not be available when menubar is active");
// Inactivate the menubar (and restore the focus to the searchbar
EventUtils.synthesizeKey("VK_ESCAPE", {});
is(DOMWindowUtils.IMEStatus, DOMWindowUtils.IME_STATUS_ENABLED,
"IME should be available after focus is back to the searchbar");
finish();
}, 0);
});
// Activate the menubar, then, the popup should be closed
EventUtils.synthesizeKey("VK_ALT", {});
}, 0);
});
// Open popup of the searchbar
EventUtils.synthesizeKey("VK_F4", {});
}
|