aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch11/11.2/11.2.2.js
diff options
context:
space:
mode:
authorNebojsa Ciric <cira@google.com>2012-04-16 13:23:13 -0700
committerNebojsa Ciric <cira@google.com>2012-04-16 13:23:13 -0700
commitcc9f5eab4896aaac4e394c4b4c9c7daa585c46d6 (patch)
tree9e19edead8add279f0ccbdf0678ade0e8c80fca8 /test/suite/intl402/ch11/11.2/11.2.2.js
parent1087776d49a62340ca8c07088c36b61d75878226 (diff)
Initial intl402 checkin.
Diffstat (limited to 'test/suite/intl402/ch11/11.2/11.2.2.js')
-rw-r--r--test/suite/intl402/ch11/11.2/11.2.2.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/suite/intl402/ch11/11.2/11.2.2.js b/test/suite/intl402/ch11/11.2/11.2.2.js
new file mode 100644
index 000000000..9d136f77e
--- /dev/null
+++ b/test/suite/intl402/ch11/11.2/11.2.2.js
@@ -0,0 +1,34 @@
+// Copyright 2012 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @path intl402/ch11/11.2/11.2.2.js
+ * @description Tests that the Intl.Collator has a supportedLocalesOf
+ * property, and it works as planned.
+ */
+
+var testcase = function() {
+ "use strict";
+
+ var supported = (new Intl.LocaleList())[0];
+ var notSupported = 'zxx';
+ var requestedLocales = [supported, notSupported];
+
+ var supportedLocales;
+
+ if (!Intl.Collator.hasOwnProperty('supportedLocalesOf')) {
+ $ERROR("Intl.Collator doesn't have a supportedLocalesOf property.");
+ }
+
+ supportedLocales = Intl.Collator.supportedLocalesOf(requestedLocales);
+ if (supportedLocales.length !== 1) {
+ $ERROR('The length of supported locales list is not 1.');
+ }
+
+ if (supportedLocales[0] !== supported) {
+ $ERROR('The supported locale is not returned in the supported list.');
+ }
+
+ return true;
+}
+runTestCase(testcase);