Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { addDebuggerToGlobal } = ChromeUtils.importESModule(
);
addDebuggerToGlobal(globalThis);
/**
* Ensure that sandboxes created via the Dev Tools loader respect the
* invisibleToDebugger flag.
*/
function run_test() {
visible_loader();
invisible_loader();
// TODO: invisibleToDebugger should be deprecated in favor of
// useDistinctSystemPrincipalLoader, but we might move out from the loader
// to using only standard imports instead.
distinct_system_principal_loader();
}
function visible_loader() {
const loader = new DevToolsLoader({
invisibleToDebugger: false,
});
const dbg = new Debugger();
const sandbox = loader.loader.sharedGlobal;
try {
dbg.addDebuggee(sandbox);
Assert.ok(true);
} catch (e) {
do_throw("debugger could not add visible value");
}
}
function invisible_loader() {
const loader = new DevToolsLoader({
invisibleToDebugger: true,
});
const dbg = new Debugger();
const sandbox = loader.loader.sharedGlobal;
try {
dbg.addDebuggee(sandbox);
do_throw("debugger added invisible value");
} catch (e) {
Assert.ok(true);
}
}
function distinct_system_principal_loader() {
const {
useDistinctSystemPrincipalLoader,
releaseDistinctSystemPrincipalLoader,
} = ChromeUtils.importESModule(
);
const requester = {};
const loader = useDistinctSystemPrincipalLoader(requester);
const dbg = new Debugger();
const sandbox = loader.loader.sharedGlobal;
try {
dbg.addDebuggee(sandbox);
do_throw("debugger added invisible value");
} catch (e) {
Assert.ok(true);
}
releaseDistinctSystemPrincipalLoader(requester);
}