Bug 1621231 - make sandbox prefs not trip browser_preferences_usage.js so much, r=florian

A longer-term fix is being worked on in bug 1644917, but this will make life easier for sheriffs and on try.

Differential Revision: https://phabricator.services.mozilla.com/D79662
This commit is contained in:
Gijs Kruitbosch 2020-06-18 15:46:41 +00:00
parent 7c14e4e23e
commit 0538417ba0

View File

@ -216,16 +216,16 @@ add_task(async function navigate_around() {
// The following 3 sandbox prefs are covered by
// https://bugzilla.mozilla.org/show_bug.cgi?id=1600189
whitelist["security.sandbox.content.write_path_whitelist"] = {
min: 50,
max: 51,
min: 49,
max: 55,
};
whitelist["security.sandbox.content.read_path_whitelist"] = {
min: 50,
max: 51,
min: 49,
max: 55,
};
whitelist["security.sandbox.content.force-namespace"] = {
min: 50,
max: 51,
min: 49,
max: 55,
};
} else if (AppConstants.platform == "win") {
// The following 2 graphics prefs are covered by
@ -241,12 +241,12 @@ add_task(async function navigate_around() {
// The following 2 sandbox prefs are covered by
// https://bugzilla.mozilla.org/show_bug.cgi?id=1639494
whitelist["security.sandbox.content.read_path_whitelist"] = {
min: 50,
max: 51,
min: 49,
max: 55,
};
whitelist["security.sandbox.logging.enabled"] = {
min: 50,
max: 51,
min: 49,
max: 55,
};
}
}