summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch09/9.1/9.1.1_2_1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch09/9.1/9.1.1_2_1.js')
-rw-r--r--test/suite/intl402/ch09/9.1/9.1.1_2_1.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/suite/intl402/ch09/9.1/9.1.1_2_1.js b/test/suite/intl402/ch09/9.1/9.1.1_2_1.js
new file mode 100644
index 000000000..f96aa7735
--- /dev/null
+++ b/test/suite/intl402/ch09/9.1/9.1.1_2_1.js
@@ -0,0 +1,23 @@
+// 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.1_2_1.js
+ * @description Tests initialization of LocaleList object with an empty list.
+ */
+
+function testcase() {
+ "use strict";
+
+ var passed = false;
+
+ var list = new Intl.LocaleList([]);
+ if (list.length !== 0) {
+ $ERROR('LocaleList constructed with empty list should have 0 elements.');
+ }
+
+ passed = true;
+
+ return passed;
+}
+runTestCase(testcase); \ No newline at end of file