forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D14647 --HG-- extra : moz-landing-system : lando
14 lines
460 B
JavaScript
14 lines
460 B
JavaScript
const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function isParentProcess() {
|
|
return (Services.appinfo.processType == Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT);
|
|
}
|
|
|
|
function run_test() {
|
|
if (!isParentProcess()) {
|
|
const pb = Services.prefs;
|
|
Assert.equal(pb.getBoolPref("Test.IPC.bool.new"), true);
|
|
Assert.equal(pb.getIntPref("Test.IPC.int.new"), 23);
|
|
Assert.equal(pb.getCharPref("Test.IPC.char.new"), "hey");
|
|
}
|
|
}
|