Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

function run_test()
{
try {
var sandbox = new Cu.Sandbox(null, {"sandboxPrototype" : {}});
Assert.ok(false);
} catch (e) {
Assert.ok(/must subsume sandboxPrototype/.test(e));
}
}