blob: 74253ccaed10a6613b9571dcd32d8e8a75405ea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
function sbTest() {
var threw = false;
try {
for (var x in Components) { }
ok(false, "Shouldn't be able to enumerate Components");
} catch(e) {
ok(true, "Threw appropriately");
threw = true;
}
ok(threw, "Shouldn't have thrown uncatchable exception");
}
function run_test() {
var sb = Cu.Sandbox('http://www.example.com', { wantComponents: true });
sb.ok = ok;
Cu.evalInSandbox(sbTest.toSource(), sb);
Cu.evalInSandbox('sbTest();', sb);
}
|