summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch09/9.1/9.1.1_2_5.js
blob: b09a5798325e2288ba29fd86d8c87475c0f16c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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);