https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b3c5337da561db8369f09db12e84238841401e6d authored by ffxbld on 18 December 2014, 03:26:24 UTC
Added FENNEC_34_0_1_RELEASE FENNEC_34_0_1_BUILD1 tag(s) for changeset c02644846c0d. DONTBUILD CLOSED TREE a=release
Tip revision: b3c5337
test_ipcshell_child.js
const Cc = Components.classes;
const Ci = Components.interfaces;

const runtime = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULRuntime);

if (typeof(run_test) == "undefined") {
  run_test = function() {
    do_check_eq(runtime.processType, Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT);
  }
}
back to top