weird-cases.js (658B)
1 // Copyright 2016 Mozilla Corporation. All rights reserved. 2 // This code is governed by the license found in the LICENSE file. 3 4 /*--- 5 esid: sec-intl.getcanonicallocales 6 description: Tests the getCanonicalLocales function for weird tags. 7 info: | 8 8.2.1 Intl.getCanonicalLocales (locales) 9 1. Let ll be ? CanonicalizeLocaleList(locales). 10 2. Return CreateArrayFromList(ll). 11 includes: [compareArray.js] 12 ---*/ 13 14 var weirdCases = 15 [ 16 "en-x-u-foo", 17 "en-a-bar-x-u-foo", 18 "en-x-u-foo-a-bar", 19 "en-a-bar-u-baz-x-u-foo", 20 ]; 21 22 weirdCases.forEach(function (weird) { 23 assert.compareArray(Intl.getCanonicalLocales(weird), [weird]); 24 }); 25 26 reportCompare(0, 0);