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);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.