1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Copyright 2018 André Bargull; Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
// Split from intl402/Locale/likely-subtags-grandfathered.js
/*---
esid: sec-intl.getcanonicallocales
description: >
Verifies canonicalization of specific tags.
---*/
const regularGrandfathered = [
{
tag: "art-lojban",
canonical: "jbo",
},
{
tag: "zh-guoyu",
canonical: "zh",
},
{
tag: "zh-hakka",
canonical: "hak",
},
{
tag: "zh-xiang",
canonical: "hsn",
},
];
for (const {tag, canonical} of regularGrandfathered) {
assert.sameValue(Intl.getCanonicalLocales(tag)[0], canonical);
}
reportCompare(0, 0);
|