summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch09/9.1/9.1.3.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
commit96c257264b4d2ad8e4ee94b91dee29d83ccb2f06 (patch)
tree9e19edead8add279f0ccbdf0678ade0e8c80fca8 /test/suite/intl402/ch09/9.1/9.1.3.js
parent538dd397e5e2afbfff412b4354d65991673c6fb6 (diff)
downloadtest262-96c257264b4d2ad8e4ee94b91dee29d83ccb2f06.tar.gz
Initial intl402 checkin.
Diffstat (limited to 'test/suite/intl402/ch09/9.1/9.1.3.js')
-rw-r--r--test/suite/intl402/ch09/9.1/9.1.3.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/suite/intl402/ch09/9.1/9.1.3.js b/test/suite/intl402/ch09/9.1/9.1.3.js
new file mode 100644
index 000000000..d1bb7e081
--- /dev/null
+++ b/test/suite/intl402/ch09/9.1/9.1.3.js
@@ -0,0 +1,30 @@
+// Copyright 2012 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @path intl402/ch09/9.1/9.1.3.js
+ * @description Tests Intl.LocaleList as a constructor.
+ */
+
+function testcase() {
+ "use strict";
+
+ var passed = false;
+
+ var list = new Intl.LocaleList();
+
+ if (list.length !== 1) {
+ $ERROR('LocaleList constructed with no arguments should have 1 element.');
+ }
+
+ // Using new Intl.LocaleList and calling Intl.LocaleList should produce the
+ // same result.
+ if (Intl.LocaleList()[0] !== list[0]) {
+ $ERROR('Intl.LocaleList()[0] should be equal to new Intl.LocaleList()[0]');
+ }
+
+ passed = true;
+
+ return passed;
+}
+runTestCase(testcase); \ No newline at end of file