forked from mirrors/gecko-dev
MozReview-Commit-ID: 9kvUdw2TeHB --HG-- extra : rebase_source : 0b0a007ad517c0256fe67256391d87065bf645ef extra : amend_source : c2c56528f12e38852e913e42e9e7f9e78e8623d9 extra : source : ec2f47133979d085739d383cc50358d6e9417979
62 lines
2.2 KiB
JavaScript
62 lines
2.2 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";
|
|
|
|
const TEST_PAGE = "http://mochi.test:8888/browser/browser/components/customizableui/test/support/feeds_test_page.html";
|
|
const TEST_FEED = "http://mochi.test:8888/browser/browser/components/customizableui/test/support/test-feed.xml";
|
|
|
|
var newTab = null;
|
|
var initialLocation = gBrowser.currentURI.spec;
|
|
|
|
add_task(async function() {
|
|
info("Check Subscribe button functionality");
|
|
|
|
// add the Subscribe button to the panel
|
|
CustomizableUI.addWidgetToArea("feed-button",
|
|
CustomizableUI.AREA_FIXED_OVERFLOW_PANEL);
|
|
|
|
await waitForOverflowButtonShown();
|
|
|
|
// check the button's functionality
|
|
await document.getElementById("nav-bar").overflowable.show();
|
|
|
|
let feedButton = document.getElementById("feed-button");
|
|
ok(feedButton, "The Subscribe button was added to the Panel Menu");
|
|
is(feedButton.getAttribute("disabled"), "true", "The Subscribe button is initially disabled");
|
|
|
|
let panelHidePromise = promiseOverflowHidden(window);
|
|
await document.getElementById("nav-bar").overflowable._panel.hidePopup();
|
|
await panelHidePromise;
|
|
|
|
newTab = gBrowser.selectedTab;
|
|
await promiseTabLoadEvent(newTab, TEST_PAGE);
|
|
|
|
await gCUITestUtils.openMainMenu();
|
|
|
|
await waitForCondition(() => !feedButton.hasAttribute("disabled"));
|
|
ok(!feedButton.hasAttribute("disabled"), "The Subscribe button gets enabled");
|
|
|
|
feedButton.click();
|
|
await promiseTabLoadEvent(newTab, TEST_FEED);
|
|
|
|
is(gBrowser.currentURI.spec, TEST_FEED, "Subscribe page opened");
|
|
ok(!isOverflowOpen(), "Panel is closed");
|
|
|
|
if (isOverflowOpen()) {
|
|
panelHidePromise = promiseOverflowHidden(window);
|
|
await document.getElementById("nav-bar").overflowable._panel.hidePopup();
|
|
await panelHidePromise;
|
|
}
|
|
});
|
|
|
|
add_task(async function asyncCleanup() {
|
|
// reset the panel UI to the default state
|
|
await resetCustomization();
|
|
ok(CustomizableUI.inDefaultState, "The UI is in default state again.");
|
|
|
|
// restore the initial location
|
|
BrowserTestUtils.addTab(gBrowser, initialLocation);
|
|
gBrowser.removeTab(newTab);
|
|
});
|