Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: js/xpconnect/tests/unit/xpcshell.toml
function run_test() {
var sb = Cu.Sandbox('http://www.example.com');
var f = Cu.evalInSandbox('var f = function() {}; f;', sb);
Assert.equal(f.name, "");
}