The `gBrowser.reloadTab` method was doing a very light reload, which could preserve iframe overriden locations. The new method ensures we load the original HTML content back, this seems to also have an impact on keep-alive which is not longer guaranteed. Only supports reloading the currently selected tab, to better replicate real user scenarios. But also to comply to `BrowserCommands.reload`, which only supports reloading the selected tab. Also tune the har test, now that requests are really cancelled and we may try to fetch reponse content for such request. Differential Revision: https://phabricator.services.mozilla.com/D277433
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Tests if visible columns are properly saved. Note that the column
|
|
* header is visible only if there are requests in the list.
|
|
*/
|
|
|
|
add_task(async function () {
|
|
Services.prefs.setCharPref(
|
|
"devtools.netmonitor.visibleColumns",
|
|
'["status", "contentSize", "waterfall"]'
|
|
);
|
|
|
|
const { monitor } = await initNetMonitor(SIMPLE_URL, {
|
|
requestCount: 1,
|
|
});
|
|
info("Starting test... ");
|
|
|
|
const { document, store, windowRequire } = monitor.panelWin;
|
|
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
|
|
store.dispatch(Actions.batchEnable(false));
|
|
|
|
const wait = waitForNetworkEvents(monitor, 1);
|
|
await reloadSelectedTab();
|
|
await wait;
|
|
|
|
ok(
|
|
document.querySelector("#requests-list-status-button"),
|
|
"Status column should be shown"
|
|
);
|
|
ok(
|
|
document.querySelector("#requests-list-contentSize-button"),
|
|
"Content size column should be shown"
|
|
);
|
|
|
|
await hideColumn(monitor, "status");
|
|
await hideColumn(monitor, "contentSize");
|
|
|
|
let visibleColumns = JSON.parse(
|
|
Services.prefs.getCharPref("devtools.netmonitor.visibleColumns")
|
|
);
|
|
|
|
ok(!visibleColumns.includes("status"), "Pref should be synced for status");
|
|
ok(
|
|
!visibleColumns.includes("contentSize"),
|
|
"Pref should be synced for contentSize"
|
|
);
|
|
|
|
await showColumn(monitor, "status");
|
|
|
|
visibleColumns = JSON.parse(
|
|
Services.prefs.getCharPref("devtools.netmonitor.visibleColumns")
|
|
);
|
|
|
|
ok(visibleColumns.includes("status"), "Pref should be synced for status");
|
|
});
|