forked from mirrors/gecko-dev
Use 'globalThis' instead of 'this' when trying to attach a debugger to the current global to avoid subtle footguns with the varied definitions of 'this'. The debugger interface needs a true GlobalObject so this is much clearer. In particular, this is a problem in test_nativewrappers.js when the test runs in strict mode since the 'this' in the test function is no long implicitly the global. Differential Revision: https://phabricator.services.mozilla.com/D157544
53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
/* eslint-disable strict */
|
|
function run_test() {
|
|
Services.prefs.setBoolPref("security.allow_eval_with_system_principal", true);
|
|
registerCleanupFunction(() => {
|
|
Services.prefs.clearUserPref("security.allow_eval_with_system_principal");
|
|
});
|
|
const { addDebuggerToGlobal } = ChromeUtils.import(
|
|
"resource://gre/modules/jsdebugger.jsm"
|
|
);
|
|
addDebuggerToGlobal(globalThis);
|
|
const g = createTestGlobal("test", {
|
|
wantGlobalProperties: ["ChromeUtils"],
|
|
});
|
|
const dbg = new Debugger();
|
|
const gw = dbg.addDebuggee(g);
|
|
|
|
g.eval(`
|
|
// This is not a CCW.
|
|
Object.defineProperty(this, "bar", {
|
|
get: function() { return "bar"; },
|
|
configurable: true,
|
|
enumerable: true
|
|
});
|
|
|
|
const { XPCOMUtils } = ChromeUtils.importESModule(
|
|
"resource://gre/modules/XPCOMUtils.sys.mjs"
|
|
);
|
|
|
|
// This is a CCW.
|
|
XPCOMUtils.defineLazyGetter(this, "foo", function() { return "foo"; });
|
|
`);
|
|
|
|
// Neither scripted getter should be considered safe.
|
|
assert(!DevToolsUtils.hasSafeGetter(gw.getOwnPropertyDescriptor("bar")));
|
|
assert(!DevToolsUtils.hasSafeGetter(gw.getOwnPropertyDescriptor("foo")));
|
|
|
|
// Create an object in a less privileged sandbox.
|
|
const obj = gw.makeDebuggeeValue(
|
|
Cu.waiveXrays(
|
|
Cu.Sandbox(null).eval(`
|
|
Object.defineProperty({}, "bar", {
|
|
get: function() { return "bar"; },
|
|
configurable: true,
|
|
enumerable: true
|
|
});
|
|
`)
|
|
)
|
|
);
|
|
|
|
// After waiving Xrays, the object has 2 wrappers. Both must be removed
|
|
// in order to detect that the getter is not safe.
|
|
assert(!DevToolsUtils.hasSafeGetter(obj.getOwnPropertyDescriptor("bar")));
|
|
}
|