Bug 1597036 - Add fission.autostart as an optional locked pref in the troubleshooting schema. r=mconley

I think that Bug 1572925 made it an error to have any locked prefs
reported in about:support, because they had a pref that accidentally
was getting reported, and I guess we don't have any by
default. fission.autostart is locked on beta and release, but not on
Nightly. This patch makes it so it is okay, but not necessary, to have
fission.autostart reported as a locked preference, so that the test
will pass in either configuration.

Differential Revision: https://phabricator.services.mozilla.com/D53888

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew McCreight 2019-11-21 16:26:13 +00:00
parent b78bcbe3c1
commit 52c4d52f02

View File

@ -285,7 +285,12 @@ const SNAPSHOT_SCHEMA = {
lockedPreferences: {
required: true,
type: "object",
properties: {},
properties: {
"fission.autostart": {
required: false,
type: "boolean",
},
},
},
graphics: {
required: true,