Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 // Resize to a small window, open a new window, check that new window handles overflow properly
8 add_task(function() {
9 let originalWindowWidth = window.outerWidth;
10 let navbar = document.getElementById(CustomizableUI.AREA_NAVBAR);
11 ok(!navbar.hasAttribute("overflowing"), "Should start with a non-overflowing toolbar.");
12 let oldChildCount = navbar.customizationTarget.childElementCount;
13 window.resizeTo(400, window.outerHeight);
14 yield waitForCondition(() => navbar.hasAttribute("overflowing"));
15 ok(navbar.hasAttribute("overflowing"), "Should have an overflowing toolbar.");
17 ok(navbar.customizationTarget.childElementCount < oldChildCount, "Should have fewer children.");
18 let newWindow = yield openAndLoadWindow();
19 let otherNavBar = newWindow.document.getElementById(CustomizableUI.AREA_NAVBAR);
20 yield waitForCondition(() => otherNavBar.hasAttribute("overflowing"));
21 ok(otherNavBar.hasAttribute("overflowing"), "Other window should have an overflowing toolbar.");
22 yield promiseWindowClosed(newWindow);
24 window.resizeTo(originalWindowWidth, window.outerHeight);
25 yield waitForCondition(() => !navbar.hasAttribute("overflowing"));
26 ok(!navbar.hasAttribute("overflowing"), "Should no longer have an overflowing toolbar.");
27 });
29 add_task(function asyncCleanup() {
30 yield resetCustomization();
31 });