Backed out changeset 17f7eac615fa (bug 1609356) for devtools failures on browser_toolbox_options_multiple_tabs. CLOSED TREE

This commit is contained in:
Cosmin Sabou 2020-01-17 20:11:34 +02:00
Родитель 4b24015c8a
Коммит 7a03de6733
3 изменённых файлов: 5 добавлений и 9 удалений

Просмотреть файл

@ -2078,12 +2078,8 @@ pref("devtools.netmonitor.enabled", true);
pref("devtools.netmonitor.features.search", true);
pref("devtools.netmonitor.features.requestBlocking", true);
// Enable the Application panel on Nightly
#if defined(NIGHTLY_BUILD)
pref("devtools.application.enabled", true);
#else
pref("devtools.application.enabled", false);
#endif
// Enable the Application panel
pref("devtools.application.enabled", false);
// The default Network Monitor UI settings
pref("devtools.netmonitor.panes-network-details-width", 550);

Просмотреть файл

@ -6,7 +6,7 @@ The Application panel is a Firefox Developer Tools panel meant to allow the insp
### How to enable the Application panel
At the moment, the panel is shown by default on Nightly builds only, behind a configuration flag. In order to enable it, type `about:config` in the address bar, look for the `devtools.application.enabled` flag and set it to true. It will then appear as a tab with the rest of the panels within the Developer Tools toolbox.
At the moment, the panel is hidden behind a configuration flag. In order to enable it, type `about:config` in the address bar, look for the `devtools.application.enabled` flag and set it to true. It will then appear as a tab with the rest of the panels within the Developer Tools toolbox.
## Technical overview

Просмотреть файл

@ -465,8 +465,8 @@ Tools.application = {
label: l10n("application.label"),
panelLabel: l10n("application.panellabel"),
tooltip: l10n("application.tooltip"),
inMenu: AppConstants.NIGHTLY_BUILD,
hiddenInOptions: !AppConstants.NIGHTLY_BUILD,
inMenu: false,
hiddenInOptions: true,
isTargetSupported: function(target) {
return target.hasActor("manifest");