mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
9 lines
295 B
JavaScript
9 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);
|
||
|
|
}
}
|