blob: 509c9a5d40e2c851080aceed736682b74d8e9c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cu = Components.utils;
function run_test() {
var secMan = Cc["@mozilla.org/scriptsecuritymanager;1"].getService(Ci.nsIScriptSecurityManager);
do_check_true(secMan.isSystemPrincipal(Cu.getObjectPrincipal({})));
var sb = new Cu.Sandbox('http://www.example.com');
Cu.evalInSandbox('var obj = { foo: 42 };', sb);
do_check_eq(Cu.getObjectPrincipal(sb.obj).origin, 'http://www.example.com');
}
|