Bug 1513783 - Give Marionette sandbox its own ChromeUtils object. r=kmag

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jan de Mooij 2018-12-20 21:15:11 +00:00
parent feff447597
commit 78e73f70bf

View File

@ -434,6 +434,7 @@ sandbox.create = function(win, principal = null, opts = {}) {
sandboxPrototype: win,
wantComponents: true,
wantXrays: true,
wantGlobalProperties: ["ChromeUtils"],
}, opts);
return new Cu.Sandbox(p, opts);
};