summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch09/9.1/9.1.1_2_4.js
blob: a8d7a870acde8b5c3a22a1d02d6d55c739cf6dad (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
29
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);