Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: js/xpconnect/tests/unit/xpcshell.toml
function run_test()
{
try {
var sandbox = new Cu.Sandbox(null, {"sandboxPrototype" : {}});
Assert.ok(false);
} catch (e) {
Assert.ok(/must subsume sandboxPrototype/.test(e));
}
}