forked from mirrors/gecko-dev
- Moved aboutaddons.html at the root of the about:addons page
- renamed aboutaddons.js `initialize` global function to `initializeView` (and renamed `show` and `hide` global functions accordingly)
- Simplify initial load logic a bit more:
- remove gCategories
- moved responsability of the CategoriesBox initialization to the `initializationView` function
- replaced initialization logic based on `gPendingInitializations` and `notifyInitialized` with
a `promiseInitialized` global resolved when `initializeView` method has been called and its return value resolved
- Fix test helpers and test failures
- InlineOptionsBrowser: take into account that browser-custom-element does opt-in the delayedConnectedCallback behavior
and browser.loadURI may throw if called while the document is still loading.
Differential Revision: https://phabricator.services.mozilla.com/D96472
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
var initialLocation = gBrowser.currentURI.spec;
|
|
|
|
add_task(async function() {
|
|
CustomizableUI.addWidgetToArea(
|
|
"add-ons-button",
|
|
CustomizableUI.AREA_FIXED_OVERFLOW_PANEL
|
|
);
|
|
info("Check addons button existence and functionality");
|
|
|
|
await waitForOverflowButtonShown();
|
|
|
|
await document.getElementById("nav-bar").overflowable.show();
|
|
info("Menu panel was opened");
|
|
|
|
let addonsButton = document.getElementById("add-ons-button");
|
|
ok(addonsButton, "Add-ons button exists in Panel Menu");
|
|
addonsButton.click();
|
|
|
|
await Promise.all([
|
|
TestUtils.waitForCondition(
|
|
() => gBrowser.currentURI && gBrowser.currentURI.spec == "about:addons"
|
|
),
|
|
new Promise(r =>
|
|
gBrowser.selectedBrowser.addEventListener("load", r, true)
|
|
),
|
|
]);
|
|
|
|
let addonsPage = gBrowser.selectedBrowser.contentWindow.document.querySelector(
|
|
"title[data-l10n-id='addons-page-title']"
|
|
);
|
|
ok(addonsPage, "Add-ons page was opened");
|
|
});
|
|
|
|
add_task(async function asyncCleanup() {
|
|
CustomizableUI.reset();
|
|
BrowserTestUtils.addTab(gBrowser, initialLocation);
|
|
gBrowser.removeTab(gBrowser.selectedTab);
|
|
info("Tabs were restored");
|
|
});
|