123456789101112131415161718192021222324252627282930313233343536 |
- 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", {});
- }
|