summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch09/9.1/9.1.1_2_5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch09/9.1/9.1.1_2_5.js')
-rw-r--r--test/suite/intl402/ch09/9.1/9.1.1_2_5.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/suite/intl402/ch09/9.1/9.1.1_2_5.js b/test/suite/intl402/ch09/9.1/9.1.1_2_5.js
deleted file mode 100644
index b09a57983..000000000
--- a/test/suite/intl402/ch09/9.1/9.1.1_2_5.js
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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_5.js
- * @description Tests initialization of LocaleList object with invalid locale IDs.
- */
-
-function testcase() {
- "use strict";
-
- var passed = false;
-
- var list = undefined;
- try {
- list = new Intl.LocaleList(['']);
- } catch(e) {
- // Throws invalid language tag exception.
- }
- if (list !== undefined) {
- $ERROR('Empty string should be an invalid locale identifier.');
- }
-
- passed = true;
-
- return passed;
-}
-runTestCase(testcase); \ No newline at end of file