https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1e3d55d6cf6991077e8a8711e9a979434b596b76 authored by ffxbld on 09 May 2012, 00:45:14 UTC
Added FENNEC_13_0b3_RELEASE FENNEC_13_0b3_BUILD1 tag(s) for changeset 435a483ffd84. DONTBUILD CLOSED TREE a=release
Tip revision: 1e3d55d
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