mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
function run_test() {
|
|
var cu = Components.utils;
|
|
var sb = cu.Sandbox(this,
|
|
{wantComponents: false});
|
|
|
|
var rv = cu.evalInSandbox("this.Components", sb);
|
|
do_check_eq(rv, undefined);
|
|
}
|