Bug 1530824 - mark the about:compat process script as intermittently loaded in the browser_startup_content mochitest; r=kmag

Mark the about:compat process script as intermittently loaded in browser/base/content/test/performance/browser_startup_content.js

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Thomas Wisniewski 2019-03-02 18:42:04 +00:00
Родитель e576732f18
Коммит 10be4fc289
1 изменённых файлов: 7 добавлений и 3 удалений

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

@ -86,7 +86,6 @@ const whitelist = {
"data:,ChromeUtils.import('resource://gre/modules/ExtensionProcessScript.jsm')",
"resource://devtools/client/jsonview/converter-observer.js",
"resource://gre/modules/WebRequestContent.js",
"resource://webcompat/aboutPageProcessScript.js",
]),
};
@ -98,11 +97,16 @@ const intermittently_loaded_whitelist = {
"resource://gre/modules/nsAsyncShutdown.jsm",
"resource://gre/modules/sessionstore/Utils.jsm",
// Webcompat about:config front-end
// Webcompat about:config front-end. This is presently nightly-only and
// part of a system add-on which may not load early enough for the test.
"resource://webcompat/AboutCompat.jsm",
]),
frameScripts: new Set([]),
processScripts: new Set([]),
processScripts: new Set([
// Webcompat about:config front-end. This is presently nightly-only and
// part of a system add-on which may not load early enough for the test.
"resource://webcompat/aboutPageProcessScript.js",
]),
};
const blacklist = {