comparison: js/xpconnect/tests/unit/test_bug849730.js
js/xpconnect/tests/unit/test_bug849730.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 const Cu = Components.utils; |
|
2 |
|
3 function run_test() { |
|
4 var sb = new Cu.Sandbox('http://www.example.com'); |
|
5 sb.arr = [3, 4]; |
|
6 do_check_true(Cu.evalInSandbox('Array.isArray(arr);', sb)); |
|
7 } |