mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 20:33:10 +09:00
7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
const Cu = Components.utils;
|
|
|
|
function run_test() {
|
|
var sb = new Cu.Sandbox('http://www.example.com');
|
|
sb.arr = [3, 4];
|
|
do_check_true(Cu.evalInSandbox('!Array.isArray(arr);', sb));
|
|
}
|