mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 08:42:13 +00:00
08997000eb
Backed out changeset 647025383676 (bug1202902
) Backed out changeset d70c7fe532c6 (bug1202902
)
10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
var Cc = Components.classes;
|
|
var 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);
|
|
}
|
|
}
|