aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch09/9.1/9.1.1_2_4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch09/9.1/9.1.1_2_4.js')
-rw-r--r--test/suite/intl402/ch09/9.1/9.1.1_2_4.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/suite/intl402/ch09/9.1/9.1.1_2_4.js b/test/suite/intl402/ch09/9.1/9.1.1_2_4.js
new file mode 100644
index 000000000..a8d7a870a
--- /dev/null
+++ b/test/suite/intl402/ch09/9.1/9.1.1_2_4.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.1_2_4.js
+ * @description Tests initialization of LocaleList object with non-string parameters.
+ */
+
+function testcase() {
+ "use strict";
+
+ var passed = false;
+
+ var list = undefined;
+ try {
+ list = new Intl.LocaleList([5]);
+ } catch(e) {
+ if (!(e instanceof TypeError)) {
+ $ERROR('LocaleList should throw TypeError exception for non-string argument.');
+ }
+ }
+ if (list !== undefined) {
+ $ERROR('LocaleList should throw TypeError exception for non-string argument.');
+ }
+
+ passed = true;
+
+ return passed;
+}
+runTestCase(testcase); \ No newline at end of file