mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b51f6208c3
We only want fallback behavior here if the policy decides to fail silently. If the policy passes *bp == false, we want to just throw.
19 lines
570 B
JavaScript
19 lines
570 B
JavaScript
function sbTest() {
|
|
var threw = false;
|
|
try {
|
|
for (var x in Components) { }
|
|
do_check_true(false, "Shouldn't be able to enumerate Components");
|
|
} catch(e) {
|
|
do_check_true(true, "Threw appropriately");
|
|
threw = true;
|
|
}
|
|
do_check_true(threw, "Shouldn't have thrown uncatchable exception");
|
|
}
|
|
|
|
function run_test() {
|
|
var sb = Components.utils.Sandbox('http://www.example.com', { wantComponents: true });
|
|
sb.do_check_true = do_check_true;
|
|
Components.utils.evalInSandbox(sbTest.toSource(), sb);
|
|
Components.utils.evalInSandbox('sbTest();', sb);
|
|
}
|