summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch12/12.2/12.2.2.js
blob: d16ecdceb041522684b98c4793cb37e0093be5c6 (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
31
32
33
34
35
// Copyright 2012 Google Inc.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @path intl402/ch12/12.2/12.2.2.js
 * @description Tests that the Intl.NumberFormat has a supportedLocalesOf
 * property, and it works as planned.
 * @author: Roozbeh Pournader
 */

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

  var supported = (new Intl.LocaleList())[0];
  var notSupported = 'zxx';
  var requestedLocales = [supported, notSupported];
    
  var supportedLocales;

  if (!Intl.NumberFormat.hasOwnProperty('supportedLocalesOf')) {
    $ERROR("Intl.NumberFormat doesn't have a supportedLocalesOf property.");
  }
    
  supportedLocales = Intl.NumberFormat.supportedLocalesOf(requestedLocales);
  if (supportedLocales.length !== 1) {
    $ERROR('The length of supported locales list is not 1.');
  }
    
  if (supportedLocales[0] !== supported) {
    $ERROR('The supported locale is not returned in the supported list.');
  }
    
  return true;
}
runTestCase(testcase);