aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch09/9.1/9.1.1_1.js
blob: 281e6f0621c6a39b7fc31a0e1b69825150a8628a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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_1.js
 * @description Tests initialization of LocaleList object with no parameters.
 */

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.');
  }

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