Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: js/xpconnect/tests/unit/xpcshell.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
function run_test()
{
metadata: "test metadata",
});
Cu.importGlobalProperties(["XMLHttpRequest"]);
Assert.equal(Cu.getSandboxMetadata(sandbox), "test metadata");
metadata: { foopy: { bar: 2 }, baz: "hi" }
});
let metadata = Cu.getSandboxMetadata(sandbox);
Assert.equal(metadata.baz, "hi");
Assert.equal(metadata.foopy.bar, 2);
metadata.baz = "foo";
metadata = Cu.getSandboxMetadata(sandbox);
Assert.equal(metadata.baz, "foo");
metadata = { foo: "bar" };
Cu.setSandboxMetadata(sandbox, metadata);
metadata.foo = "baz";
metadata = Cu.getSandboxMetadata(sandbox);
Assert.equal(metadata.foo, "bar");
let thrown = false;
let reflector = new XMLHttpRequest();
try {
Cu.setSandboxMetadata(sandbox, { foo: reflector });
} catch(e) {
thrown = true;
}
Assert.equal(thrown, true);
sandbox = Cu.Sandbox(this, {
metadata: { foopy: { bar: 2 }, baz: "hi" }
});
metadata = Cu.getSandboxMetadata(inner);
Assert.equal(metadata.baz, "hi");
Assert.equal(metadata.foopy.bar, 2);
metadata.baz = "foo";
}