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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// |reftest| skip-if(!this.hasOwnProperty('Intl'))
var testData = [
{
tag: "cel-gaulish",
options: {
numberingSystem: "latn",
},
canonical: "xtg-u-nu-latn-x-cel-gaulish",
extensions: {
numberingSystem: "latn",
},
},
{
tag: "cel-gaulish",
options: {
region: "FR",
numberingSystem: "latn",
},
canonical: "xtg-FR-u-nu-latn-x-cel-gaulish",
extensions: {
numberingSystem: "latn",
},
},
{
tag: "art-lojban",
options: {
numberingSystem: "latn",
},
canonical: "jbo-u-nu-latn",
extensions: {
numberingSystem: "latn",
},
},
{
tag: "art-lojban",
options: {
region: "ZZ",
numberingSystem: "latn",
},
canonical: "jbo-ZZ-u-nu-latn",
extensions: {
numberingSystem: "latn",
},
},
];
for (var {tag, options, canonical, extensions} of testData) {
var loc = new Intl.Locale(tag, options);
assertEq(loc.toString(), canonical);
for (var [name, value] of Object.entries(extensions)) {
assertEq(loc[name], value);
}
}
var errorTestData = [
"en-gb-oed",
"i-default",
"sgn-ch-de",
"zh-min",
"zh-min-nan",
"zh-hakka-hakka",
];
for (var tag of errorTestData) {
assertThrowsInstanceOf(() => new Intl.Locale(tag), RangeError);
assertThrowsInstanceOf(() => new Intl.Locale(tag, {}), RangeError);
}
if (typeof reportCompare === "function")
reportCompare(0, 0);
|