mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-06 03:09:18 +02:00
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D36042 --HG-- extra : source : d3afcafdce650a6f36cebbc126ee93b17f13cf52
49 lines
1.5 KiB
JavaScript
49 lines
1.5 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 initialPageZoom = ZoomManager.zoom;
|
|
|
|
add_task(async function() {
|
|
info("Check zoom out button existence and functionality");
|
|
|
|
is(initialPageZoom, 1, "Initial zoom factor should be 1");
|
|
|
|
CustomizableUI.addWidgetToArea(
|
|
"zoom-controls",
|
|
CustomizableUI.AREA_FIXED_OVERFLOW_PANEL
|
|
);
|
|
registerCleanupFunction(() => CustomizableUI.reset());
|
|
|
|
await waitForOverflowButtonShown();
|
|
|
|
await document.getElementById("nav-bar").overflowable.show();
|
|
info("Menu panel was opened");
|
|
|
|
let zoomOutButton = document.getElementById("zoom-out-button");
|
|
ok(zoomOutButton, "Zoom out button exists in Panel Menu");
|
|
|
|
zoomOutButton.click();
|
|
let pageZoomLevel = Math.round(ZoomManager.zoom * 100);
|
|
|
|
let zoomResetButton = document.getElementById("zoom-reset-button");
|
|
let expectedZoomLevel = parseInt(zoomResetButton.getAttribute("label"), 10);
|
|
ok(
|
|
pageZoomLevel < 100 && pageZoomLevel == expectedZoomLevel,
|
|
"Page zoomed out correctly"
|
|
);
|
|
|
|
// close the panel
|
|
let panelHiddenPromise = promiseOverflowHidden(window);
|
|
document.getElementById("widget-overflow").hidePopup();
|
|
await panelHiddenPromise;
|
|
info("Menu panel was closed");
|
|
});
|
|
|
|
add_task(async function asyncCleanup() {
|
|
// reset zoom level
|
|
ZoomManager.zoom = initialPageZoom;
|
|
info("Zoom level was restored");
|
|
});
|