summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch12/12.3/12.3.1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch12/12.3/12.3.1.js')
-rw-r--r--test/suite/intl402/ch12/12.3/12.3.1.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/suite/intl402/ch12/12.3/12.3.1.js b/test/suite/intl402/ch12/12.3/12.3.1.js
new file mode 100644
index 000000000..a00c2df53
--- /dev/null
+++ b/test/suite/intl402/ch12/12.3/12.3.1.js
@@ -0,0 +1,21 @@
+// Copyright 2012 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @path intl402/ch12/12.3/12.3.1.js
+ * @description Tests that Intl.NumberFormat.prototype.constructor is the
+ * Intl.NumberFormat.
+ * @author: Roozbeh Pournader
+ */
+
+var testcase = function() {
+ "use strict";
+
+ if (Intl.NumberFormat.prototype.constructor !== Intl.NumberFormat) {
+ $ERROR("Intl.NumberFormat.prototype.constructor is not the same as "
+ +"Intl.NumberFormat");
+ }
+
+ return true;
+}
+runTestCase(testcase);