122 lines
3.9 KiB
JavaScript
122 lines
3.9 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
async function testSidebarKeyToggle(key, options, expectedSidebarId) {
|
|
EventUtils.synthesizeMouseAtCenter(gURLBar.textbox, {});
|
|
let promiseShown = BrowserTestUtils.waitForEvent(window, "SidebarShown");
|
|
EventUtils.synthesizeKey(key, options);
|
|
await promiseShown;
|
|
Assert.equal(
|
|
document.getElementById("sidebar-box").getAttribute("sidebarcommand"),
|
|
expectedSidebarId
|
|
);
|
|
EventUtils.synthesizeKey(key, options);
|
|
Assert.ok(!SidebarController.isOpen);
|
|
}
|
|
|
|
add_task(async function test_sidebar_keys() {
|
|
registerCleanupFunction(() => SidebarController.hide());
|
|
|
|
await testSidebarKeyToggle("b", { accelKey: true }, "viewBookmarksSidebar");
|
|
|
|
let options = { accelKey: true, shiftKey: AppConstants.platform == "macosx" };
|
|
await testSidebarKeyToggle("h", options, "viewHistorySidebar");
|
|
});
|
|
|
|
add_task(async function test_sidebar_in_customize_mode() {
|
|
// Test bug 1756385 - widgets to appear unchecked in customize mode. Test that
|
|
// the sidebar button widget doesn't appear checked, and that the sidebar
|
|
// button toggle is inert while in customize mode.
|
|
let { CustomizableUI } = ChromeUtils.importESModule(
|
|
"resource:///modules/CustomizableUI.sys.mjs"
|
|
);
|
|
registerCleanupFunction(() => SidebarController.hide());
|
|
|
|
let placement = CustomizableUI.getPlacementOfWidget("sidebar-button");
|
|
if (!(placement?.area == CustomizableUI.AREA_NAVBAR)) {
|
|
CustomizableUI.addWidgetToArea(
|
|
"sidebar-button",
|
|
CustomizableUI.AREA_NAVBAR,
|
|
0
|
|
);
|
|
CustomizableUI.ensureWidgetPlacedInWindow("sidebar-button", window);
|
|
registerCleanupFunction(function () {
|
|
CustomizableUI.removeWidgetFromArea("sidebar-button");
|
|
});
|
|
}
|
|
|
|
if (Services.prefs.getBoolPref("sidebar.revamp", false)) {
|
|
Services.prefs.setBoolPref("sidebar.verticalTabs", true);
|
|
}
|
|
|
|
let widgetIcon = CustomizableUI.getWidget("sidebar-button")
|
|
.forWindow(window)
|
|
.node?.querySelector(".toolbarbutton-icon");
|
|
// Get the alpha value of the sidebar toggle widget's background
|
|
let getBGAlpha = () =>
|
|
InspectorUtils.colorToRGBA(
|
|
getComputedStyle(widgetIcon).getPropertyValue("background-color")
|
|
).a;
|
|
|
|
let promiseShown = BrowserTestUtils.waitForEvent(window, "SidebarShown");
|
|
SidebarController.show("viewBookmarksSidebar");
|
|
await promiseShown;
|
|
|
|
if (!Services.prefs.getBoolPref("sidebar.revamp", false)) {
|
|
Assert.greater(
|
|
getBGAlpha(),
|
|
0,
|
|
"Sidebar widget background should appear checked"
|
|
);
|
|
}
|
|
|
|
// Enter customize mode. This should disable the toggle and make the sidebar
|
|
// toggle widget appear unchecked.
|
|
let customizationReadyPromise = BrowserTestUtils.waitForEvent(
|
|
gNavToolbox,
|
|
"customizationready"
|
|
);
|
|
gCustomizeMode.enter();
|
|
await customizationReadyPromise;
|
|
|
|
Assert.equal(
|
|
getBGAlpha(),
|
|
0,
|
|
"Sidebar widget background should appear unchecked"
|
|
);
|
|
|
|
// Attempt toggle - should fail in customize mode.
|
|
await SidebarController.toggle();
|
|
ok(SidebarController.isOpen, "Sidebar is still open");
|
|
|
|
// Exit customize mode. This should re-enable the toggle and make the sidebar
|
|
// toggle widget appear checked again, since toggle() didn't hide the sidebar.
|
|
let afterCustomizationPromise = BrowserTestUtils.waitForEvent(
|
|
gNavToolbox,
|
|
"aftercustomization"
|
|
);
|
|
gCustomizeMode.exit();
|
|
await afterCustomizationPromise;
|
|
|
|
if (!Services.prefs.getBoolPref("sidebar.revamp", false)) {
|
|
Assert.greater(
|
|
getBGAlpha(),
|
|
0,
|
|
"Sidebar widget background should appear checked again"
|
|
);
|
|
}
|
|
|
|
await SidebarController.toggle();
|
|
ok(!SidebarController.isOpen, "Sidebar is closed");
|
|
if (!Services.prefs.getBoolPref("sidebar.revamp", false)) {
|
|
Assert.equal(
|
|
getBGAlpha(),
|
|
0,
|
|
"Sidebar widget background should appear unchecked"
|
|
);
|
|
}
|
|
|
|
if (Services.prefs.getBoolPref("sidebar.verticalTabs", false)) {
|
|
Services.prefs.clearUserPref("sidebar.verticalTabs");
|
|
}
|
|
});
|