summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch10/10.2/10.2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch10/10.2/10.2.js')
-rw-r--r--test/suite/intl402/ch10/10.2/10.2.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/suite/intl402/ch10/10.2/10.2.js b/test/suite/intl402/ch10/10.2/10.2.js
new file mode 100644
index 000000000..2a9c073e9
--- /dev/null
+++ b/test/suite/intl402/ch10/10.2/10.2.js
@@ -0,0 +1,16 @@
+// Copyright 2012 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @description Tests that the Intl.Collator constructor has a length
+ * property that equals 2.
+ */
+
+if (!Intl.Collator.hasOwnProperty('length')) {
+ $ERROR('Intl.Collator has no length property');
+}
+
+if (Intl.Collator.length != 2) {
+ $ERROR('Intl.Collator.length is not 2.');
+}
+