tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

default-locale-is-supported.js (600B)


      1 // Copyright 2012 Mozilla Corporation. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es5id: 9.1_a
      6 description: Tests that default locale is available.
      7 author: Norbert Lindenberg
      8 includes: [testIntl.js]
      9 ---*/
     10 
     11 testWithIntlConstructors(function (Constructor) {
     12    var defaultLocale = new Constructor().resolvedOptions().locale;
     13    var supportedLocales = Constructor.supportedLocalesOf([defaultLocale]);
     14    assert.notSameValue(supportedLocales.indexOf(defaultLocale), -1, "Default locale is not reported as available.");
     15 });
     16 
     17 reportCompare(0, 0);