mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
198 B
JavaScript
9 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);
|
|
}
|