blob: 219aa1af1d022b295f4526aff5a9c18f7dc9a703 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* 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"
);
});
|