gecko-dev/browser/components/customizableui/test/browser_989751_subviewbutton_class.js
Brian Grinstead 7133c66b38 Bug 1360282 - Remove the popup that opens from the sidebar toolbar button;r=Gijs
MozReview-Commit-ID: 4N841nISf3F

--HG--
rename : browser/components/customizableui/test/browser_988072_sidebar_events.js => browser/components/customizableui/test/browser_sidebar_toggle.js
extra : rebase_source : ac822ab6f4f64a32c51b5cd55ba7f87bee4f90f8
2017-06-13 08:14:58 -07:00

64 lines
2.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";
const kCustomClass = "acustomclassnoonewilluse";
var tempElement = null;
function insertClassNameToMenuChildren(parentMenu) {
let el = parentMenu.querySelector("menuitem:first-of-type");
el.classList.add(kCustomClass);
tempElement = el;
}
function checkSubviewButtonClass(menuId, buttonId, subviewId) {
return async function() {
info("Checking for items without the subviewbutton class in " + buttonId + " widget");
let menu = document.getElementById(menuId);
insertClassNameToMenuChildren(menu);
let placement = CustomizableUI.getPlacementOfWidget(buttonId);
let changedPlacement = false;
if (!placement || placement.area != CustomizableUI.AREA_PANEL) {
CustomizableUI.addWidgetToArea(buttonId, CustomizableUI.AREA_PANEL);
changedPlacement = true;
}
await PanelUI.show();
let button = document.getElementById(buttonId);
button.click();
await waitForCondition(() => !PanelUI.multiView.hasAttribute("transitioning"));
let subview = document.getElementById(subviewId);
ok(subview.firstChild, "Subview should have a kid");
let subviewchildren = subview.querySelectorAll("toolbarbutton");
for (let i = 0; i < subviewchildren.length; i++) {
let item = subviewchildren[i];
let itemReadable = "Item '" + item.label + "' (classes: " + item.className + ")";
ok(item.classList.contains("subviewbutton"), itemReadable + " should have the subviewbutton class.");
if (i == 0) {
ok(item.classList.contains(kCustomClass), itemReadable + " should still have its own class, too.");
}
}
let panelHiddenPromise = promisePanelHidden(window);
PanelUI.hide();
await panelHiddenPromise;
if (changedPlacement) {
CustomizableUI.reset();
}
};
}
add_task(async function() {
await SpecialPowers.pushPrefEnv({set: [["browser.photon.structure.enabled", false]]});
});
add_task(checkSubviewButtonClass("menuWebDeveloperPopup", "developer-button", "PanelUI-developerItems"));
registerCleanupFunction(function() {
tempElement.classList.remove(kCustomClass)
tempElement = null;
});