head_dbg.js (385B)
1 /* Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 "use strict"; 5 6 function testGlobal(name) { 7 const systemPrincipal = Cc["@mozilla.org/systemprincipal;1"].createInstance( 8 Ci.nsIPrincipal 9 ); 10 11 const sandbox = Cu.Sandbox(systemPrincipal); 12 Cu.evalInSandbox("this.__name = '" + name + "'", sandbox); 13 return sandbox; 14 }