test262/test/intl402/Collator/supportedLocalesOf/basic.js

23 lines
864 B
JavaScript
Raw Permalink 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: 10.2.2_a
description: >
Tests that Intl.Collator has a supportedLocalesOf property, and
it works as planned.
---*/
2012-04-16 22:23:13 +02:00
var defaultLocale = new Intl.Collator().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
2017-05-04 21:10:58 +02:00
assert(Intl.Collator.hasOwnProperty('supportedLocalesOf'), "Intl.Collator doesn't have a supportedLocalesOf property.");
2012-04-16 22:23:13 +02:00
supportedLocales = Intl.Collator.supportedLocalesOf(requestedLocales);
2017-05-04 21:10:58 +02:00
assert.sameValue(supportedLocales.length, 1, 'The length of supported locales list is not 1.');
2012-04-16 22:23:13 +02:00
2017-05-04 21:10:58 +02:00
assert.sameValue(supportedLocales[0], defaultLocale, 'The default locale is not returned in the supported list.');