Bug 1625134: Enable the compatibility panel in Nightly and DevEdition. r=Honza

Differential Revision: https://phabricator.services.mozilla.com/D72996
This commit is contained in:
Daisuke Akatsuka 2020-04-29 22:43:06 +00:00
Родитель 8aee20896d
Коммит 0941c106a4
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -1959,7 +1959,11 @@ pref("devtools.inspector.showAllAnonymousContent", false);
// Enable the new Rules View
pref("devtools.inspector.new-rulesview.enabled", false);
// Enable the compatibility tool in the inspector.
#if defined(NIGHTLY_BUILD) || defined(MOZ_DEV_EDITION)
pref("devtools.inspector.compatibility.enabled", true);
#else
pref("devtools.inspector.compatibility.enabled", false);
#endif
// Enable color scheme simulation in the inspector.
pref("devtools.inspector.color-scheme-simulation.enabled", false);