diff options
Diffstat (limited to 'js/xpconnect/tests/unit/test_bug1151385.js')
-rw-r--r-- | js/xpconnect/tests/unit/test_bug1151385.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/xpconnect/tests/unit/test_bug1151385.js b/js/xpconnect/tests/unit/test_bug1151385.js new file mode 100644 index 000000000..fdf979fe0 --- /dev/null +++ b/js/xpconnect/tests/unit/test_bug1151385.js @@ -0,0 +1,9 @@ +function run_test() +{ + try { + var sandbox = new Components.utils.Sandbox(null, {"sandboxPrototype" : {}}); + do_check_true(false); + } catch (e) { + do_check_true(/must subsume sandboxPrototype/.test(e)); + } +} |