summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Intl/unicode-bcp47-locale-ids-languages-mappings-complex.js
blob: 320e1b02c0e7a3c91fc99ec05a0cb35e252d58b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// |reftest| skip-if(!this.hasOwnProperty("Intl"))

// CLDR contains language mappings where in addition to the language subtag also
// the script or region subtag is modified, unless they're already present.

// <languageAlias type="sh" replacement="sr_Latn" reason="legacy"/>
assertEq(Intl.getCanonicalLocales("sh")[0], "sr-Latn");
assertEq(Intl.getCanonicalLocales("sh-RS")[0], "sr-Latn-RS");
assertEq(Intl.getCanonicalLocales("sh-Cyrl")[0], "sr-Cyrl");

// <languageAlias type="cnr" replacement="sr_ME" reason="legacy"/>
assertEq(Intl.getCanonicalLocales("cnr")[0], "sr-ME");
assertEq(Intl.getCanonicalLocales("cnr-Latn")[0], "sr-Latn-ME");
assertEq(Intl.getCanonicalLocales("cnr-RS")[0], "sr-RS");

// Aliases where more than just a language subtag are present are ignored.
// <languageAlias type="sr_RS" replacement="sr_Cyrl_RS" reason="legacy"/>
assertEq(Intl.getCanonicalLocales("sr-RS")[0], "sr-RS");

if (typeof reportCompare === "function")
    reportCompare(true, true);