mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-26 12:20:56 +00:00
Backed out changeset 4433f993d523 (bug 1363361)
MozReview-Commit-ID: GCC0R3hrpAc
This commit is contained in:
parent
56ff8fb5e9
commit
f679b79e58
@ -118,7 +118,7 @@ add_task(async function() {
|
||||
BrowserTestUtils.waitForEvent(PanelUI.panel, "popuppositioned");
|
||||
await PanelUI.show();
|
||||
await popupPositioned;
|
||||
}, EXPECTED_APPMENU_OPEN_REFLOWS);
|
||||
}, EXPECTED_APPMENU_OPEN_REFLOWS, window, PanelUI.panel);
|
||||
|
||||
// Now open a series of subviews, and then close the appmenu. We
|
||||
// should not reflow during any of this.
|
||||
@ -160,5 +160,5 @@ add_task(async function() {
|
||||
let hidden = BrowserTestUtils.waitForEvent(PanelUI.panel, "popuphidden");
|
||||
PanelUI.hide();
|
||||
await hidden;
|
||||
}, EXPECTED_APPMENU_SUBVIEW_REFLOWS);
|
||||
}, EXPECTED_APPMENU_SUBVIEW_REFLOWS, window, PanelUI.panel);
|
||||
});
|
||||
|
@ -36,6 +36,12 @@ add_task(async function() {
|
||||
const TAB_COUNT_FOR_GROWTH = computeMaxTabCount();
|
||||
await createTabs(TAB_COUNT_FOR_GROWTH);
|
||||
|
||||
// Because the tab strip is a scrollable frame, we can't use the
|
||||
// default dirtying function from withReflowObserver and reliably
|
||||
// get reflows for the strip. Instead, we provide a node that's
|
||||
// already in the scrollable frame to dirty - in this case, the
|
||||
// original tab.
|
||||
let origTab = gBrowser.selectedTab;
|
||||
let lastTab = gBrowser.tabs[gBrowser.tabs.length - 1];
|
||||
await BrowserTestUtils.switchTab(gBrowser, lastTab);
|
||||
|
||||
@ -46,7 +52,7 @@ add_task(async function() {
|
||||
await BrowserTestUtils.waitForEvent(tab, "transitionend",
|
||||
false, e => e.propertyName === "max-width");
|
||||
await switchDone;
|
||||
}, EXPECTED_REFLOWS);
|
||||
}, EXPECTED_REFLOWS, window, origTab);
|
||||
|
||||
await removeAllButFirstTab();
|
||||
});
|
||||
|
@ -22,6 +22,13 @@ const EXPECTED_REFLOWS = [
|
||||
add_task(async function() {
|
||||
await ensureNoPreloadedBrowser();
|
||||
|
||||
// Because the tab strip is a scrollable frame, we can't use the
|
||||
// default dirtying function from withReflowObserver and reliably
|
||||
// get reflows for the strip. Instead, we provide a node that's
|
||||
// already in the scrollable frame to dirty - in this case, the
|
||||
// original tab.
|
||||
let origTab = gBrowser.selectedTab;
|
||||
|
||||
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser);
|
||||
await BrowserTestUtils.waitForCondition(() => tab._fullyOpen);
|
||||
|
||||
@ -32,6 +39,6 @@ add_task(async function() {
|
||||
await BrowserTestUtils.waitForEvent(tab, "transitionend",
|
||||
false, e => e.propertyName === "max-width");
|
||||
await switchDone;
|
||||
}, EXPECTED_REFLOWS);
|
||||
}, EXPECTED_REFLOWS, window, origTab);
|
||||
is(EXPECTED_REFLOWS.length, 0, "No reflows are expected when closing a tab");
|
||||
});
|
||||
|
@ -27,6 +27,13 @@ const EXPECTED_REFLOWS = [
|
||||
add_task(async function() {
|
||||
await ensureNoPreloadedBrowser();
|
||||
|
||||
// Because the tab strip is a scrollable frame, we can't use the
|
||||
// default dirtying function from withReflowObserver and reliably
|
||||
// get reflows for the strip. Instead, we provide a node that's
|
||||
// already in the scrollable frame to dirty - in this case, the
|
||||
// original tab.
|
||||
let origTab = gBrowser.selectedTab;
|
||||
|
||||
// Add a reflow observer and open a new tab.
|
||||
await withReflowObserver(async function() {
|
||||
let switchDone = BrowserTestUtils.waitForEvent(window, "TabSwitchDone");
|
||||
@ -34,7 +41,7 @@ add_task(async function() {
|
||||
await BrowserTestUtils.waitForEvent(gBrowser.selectedTab, "transitionend",
|
||||
false, e => e.propertyName === "max-width");
|
||||
await switchDone;
|
||||
}, EXPECTED_REFLOWS);
|
||||
}, EXPECTED_REFLOWS, window, origTab);
|
||||
|
||||
let switchDone = BrowserTestUtils.waitForEvent(window, "TabSwitchDone");
|
||||
await BrowserTestUtils.removeTab(gBrowser.selectedTab);
|
||||
|
@ -33,13 +33,20 @@ add_task(async function() {
|
||||
|
||||
await createTabs(TAB_COUNT_FOR_SQUEEZE);
|
||||
|
||||
// Because the tab strip is a scrollable frame, we can't use the
|
||||
// default dirtying function from withReflowObserver and reliably
|
||||
// get reflows for the strip. Instead, we provide a node that's
|
||||
// already in the scrollable frame to dirty - in this case, the
|
||||
// original tab.
|
||||
let origTab = gBrowser.selectedTab;
|
||||
|
||||
await withReflowObserver(async function() {
|
||||
let switchDone = BrowserTestUtils.waitForEvent(window, "TabSwitchDone");
|
||||
BrowserOpenTab();
|
||||
await BrowserTestUtils.waitForEvent(gBrowser.selectedTab, "transitionend",
|
||||
false, e => e.propertyName === "max-width");
|
||||
await switchDone;
|
||||
}, EXPECTED_REFLOWS);
|
||||
}, EXPECTED_REFLOWS, window, origTab);
|
||||
|
||||
await removeAllButFirstTab();
|
||||
});
|
||||
|
@ -32,7 +32,13 @@ add_task(async function() {
|
||||
Assert.equal(EXPECTED_REFLOWS.length, 0,
|
||||
"We shouldn't have added any new expected reflows.");
|
||||
|
||||
// Because the tab strip is a scrollable frame, we can't use the
|
||||
// default dirtying function from withReflowObserver and reliably
|
||||
// get reflows for the strip. Instead, we provide a node that's
|
||||
// already in the scrollable frame to dirty - in this case, the
|
||||
// original tab.
|
||||
let origTab = gBrowser.selectedTab;
|
||||
|
||||
let firstSwitchDone = BrowserTestUtils.waitForEvent(window, "TabSwitchDone");
|
||||
let otherTab = await BrowserTestUtils.openNewForegroundTab(gBrowser);
|
||||
await firstSwitchDone;
|
||||
@ -41,7 +47,7 @@ add_task(async function() {
|
||||
let switchDone = BrowserTestUtils.waitForEvent(window, "TabSwitchDone");
|
||||
gBrowser.selectedTab = origTab;
|
||||
await switchDone;
|
||||
}, EXPECTED_REFLOWS);
|
||||
}, EXPECTED_REFLOWS, window, origTab);
|
||||
|
||||
await BrowserTestUtils.removeTab(otherTab);
|
||||
});
|
||||
|
@ -65,17 +65,20 @@
|
||||
* it defaults to the empty Array, meaning no reflows are expected.
|
||||
* @param window (browser window, optional)
|
||||
* The browser window to monitor. Defaults to the current window.
|
||||
* @param elemToDirty (DOM node, optional)
|
||||
* Callers can provide a custom DOM node to change some layout style
|
||||
* on in the event that the action being tested is occurring within
|
||||
* a scrollable frame. Otherwise, withReflowObserver defaults to dirtying
|
||||
* the first element child of the window.
|
||||
*/
|
||||
async function withReflowObserver(testFn, expectedStacks = [], win = window) {
|
||||
let dwu = win.QueryInterface(Ci.nsIInterfaceRequestor)
|
||||
.getInterface(Ci.nsIDOMWindowUtils);
|
||||
let dirtyFrameFn = () => {
|
||||
try {
|
||||
dwu.ensureDirtyRootFrame();
|
||||
} catch (e) {
|
||||
// If this fails, we should probably make note of it, but it's not fatal.
|
||||
info("Note: ensureDirtyRootFrame threw an exception.");
|
||||
}
|
||||
async function withReflowObserver(testFn, expectedStacks = [], win = window, elemToDirty) {
|
||||
if (!elemToDirty) {
|
||||
elemToDirty = win.document.firstElementChild;
|
||||
}
|
||||
|
||||
let i = 0;
|
||||
let dirtyFrameFn = (e) => {
|
||||
elemToDirty.style.margin = (++i % 4) + "px";
|
||||
};
|
||||
|
||||
let els = Cc["@mozilla.org/eventlistenerservice;1"]
|
||||
@ -117,9 +120,7 @@ async function withReflowObserver(testFn, expectedStacks = [], win = window) {
|
||||
},
|
||||
|
||||
reflowInterruptible(start, end) {
|
||||
// We're not interested in interruptible reflows, but might as well take the
|
||||
// opportuntiy to dirty the root frame.
|
||||
dirtyFrameFn();
|
||||
// We're not interested in interruptible reflows.
|
||||
},
|
||||
|
||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIReflowObserver,
|
||||
@ -147,6 +148,8 @@ async function withReflowObserver(testFn, expectedStacks = [], win = window) {
|
||||
|
||||
els.removeListenerForAllEvents(win, dirtyFrameFn, true);
|
||||
docShell.removeWeakReflowObserver(observer);
|
||||
|
||||
elemToDirty.style.margin = "";
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user