summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch09/9.1/9.1.3.js
blob: d1bb7e0818f53f50df0e80c1a911da8e750443f9 (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.3.js
 * @description Tests Intl.LocaleList as a constructor.
 */

function testcase() {
  "use strict";
    
  var passed = false;

  var list = new Intl.LocaleList();

  if (list.length !== 1) {
    $ERROR('LocaleList constructed with no arguments should have 1 element.');
  }

  // Using new Intl.LocaleList and calling Intl.LocaleList should produce the
  // same result.
  if (Intl.LocaleList()[0] !== list[0]) {
    $ERROR('Intl.LocaleList()[0] should be equal to new Intl.LocaleList()[0]');
  }

  passed = true;
    
  return passed; 
}
runTestCase(testcase);