test262/test/intl402/NumberFormat/supportedLocalesOf/11.2.2_a.js

30 lines
945 B
JavaScript
Raw Normal View History

2012-04-16 22:23:13 +02:00
// Copyright 2012 Google Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2014-07-25 00:41:42 +02:00
es5id: 11.2.2_a
description: >
Tests that Intl.NumberFormat has a supportedLocalesOf property,
and it works as planned.
2014-07-25 00:41:42 +02:00
author: Roozbeh Pournader
---*/
2012-04-16 22:23:13 +02:00
var defaultLocale = new Intl.NumberFormat().resolvedOptions().locale;
var notSupported = 'zxx'; // "no linguistic content"
var requestedLocales = [defaultLocale, notSupported];
2012-04-16 22:23:13 +02:00
var supportedLocales;
2012-04-16 22:23:13 +02:00
if (!Intl.NumberFormat.hasOwnProperty('supportedLocalesOf')) {
2012-04-16 22:23:13 +02:00
$ERROR("Intl.NumberFormat doesn't have a supportedLocalesOf property.");
}
2012-04-16 22:23:13 +02:00
supportedLocales = Intl.NumberFormat.supportedLocalesOf(requestedLocales);
if (supportedLocales.length !== 1) {
2012-04-16 22:23:13 +02:00
$ERROR('The length of supported locales list is not 1.');
}
2012-04-16 22:23:13 +02:00
if (supportedLocales[0] !== defaultLocale) {
$ERROR('The default locale is not returned in the supported list.');
2012-04-16 22:23:13 +02:00
}