summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/extensions/new-cross-compartment.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/non262/extensions/new-cross-compartment.js')
-rw-r--r--js/src/tests/non262/extensions/new-cross-compartment.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/js/src/tests/non262/extensions/new-cross-compartment.js b/js/src/tests/non262/extensions/new-cross-compartment.js
new file mode 100644
index 0000000000..cae4b187df
--- /dev/null
+++ b/js/src/tests/non262/extensions/new-cross-compartment.js
@@ -0,0 +1,39 @@
+// Any copyright is dedicated to the Public Domain.
+// http://creativecommons.org/licenses/publicdomain/
+
+//-----------------------------------------------------------------------------
+var BUGNUMBER = 1178653;
+var summary =
+ "|new| on a cross-compartment wrapper to a non-constructor shouldn't assert";
+
+print(BUGNUMBER + ": " + summary);
+
+/**************
+ * BEGIN TEST *
+ **************/
+
+var g = newGlobal();
+
+var otherStr = new g.String("foo");
+assertEq(otherStr instanceof g.String, true);
+assertEq(otherStr.valueOf(), "foo");
+
+try
+{
+ var constructor = g.parseInt;
+ new constructor();
+ throw new Error("no error thrown");
+}
+catch (e)
+{
+ // NOTE: not |g.TypeError|, because |new| itself throws because
+ // |!IsConstructor(constructor)|.
+ assertEq(e instanceof TypeError, true);
+}
+
+/******************************************************************************/
+
+if (typeof reportCompare === "function")
+ reportCompare(true, true);
+
+print("Tests complete");