fune/browser/components/customizableui/test/browser_1795260_searchbar_overflow_toolbar.js
Emilio Cobos Álvarez ac512eac22 Bug 1795260 - Also clear the inNavbar pref so that following test keeps working.
MANUAL PUSH: Trivial orange fix CLOSED TREE
2022-10-17 23:28:10 +02:00

27 lines
825 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const WIDGET_ID = "search-container";
registerCleanupFunction(() => {
CustomizableUI.reset();
Services.prefs.clearUserPref("browser.search.widget.inNavBar");
});
add_task(async function test_syncPreferenceWithWidget() {
// Move the searchbar to the nav bar.
CustomizableUI.addWidgetToArea(WIDGET_ID, CustomizableUI.AREA_NAVBAR);
let container = document.getElementById(WIDGET_ID);
// Set a disproportionately large width, which could be from a saved bigger
// window, or what not.
container.style.width = window.innerWidth * 2 + "px";
// Stuff shouldn't overflow.
ok(
container.getBoundingClientRect().width < window.innerWidth,
"Searchbar shouldn't overflow"
);
});