summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/test_bug851895.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/xpconnect/tests/unit/test_bug851895.js')
-rw-r--r--js/xpconnect/tests/unit/test_bug851895.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/xpconnect/tests/unit/test_bug851895.js b/js/xpconnect/tests/unit/test_bug851895.js
new file mode 100644
index 000000000..7cab5b12d
--- /dev/null
+++ b/js/xpconnect/tests/unit/test_bug851895.js
@@ -0,0 +1,11 @@
+const Cu = Components.utils;
+
+function run_test() {
+ // Make sure Components.utils gets its |this| fixed up.
+ var isXrayWrapper = Components.utils.isXrayWrapper;
+ do_check_true(!isXrayWrapper({}), "Didn't throw");
+
+ // Even for classes without |this| fixup, make sure that we don't crash.
+ var isSuccessCode = Components.isSuccessCode;
+ try { isSuccessCode(Components.results.NS_OK); } catch (e) {};
+}