blob: 9ed09a23f1463edce1ffb469070afe2a96337012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// |reftest| skip-if(!this.hasOwnProperty("Intl"))
// The IANA language subtag registry contains replacements for sign language
// codes marked as redundant. For example:
//
// Type: redundant
// Tag: sgn-DE
// Description: German Sign Language
// Added: 2001-11-11
// Deprecated: 2009-07-29
// Preferred-Value: gsg
//
// CLDR doesn't contain these mappings. Make sure we follow CLDR instead of IANA.
assertEq(Intl.getCanonicalLocales("sgn-DE")[0], "sgn-DE");
if (typeof reportCompare === "function")
reportCompare(true, true);
|