blob: 858735b5812a9af5d90e570313fcc7db3065bfa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// |reftest| skip-if(!this.hasOwnProperty("Intl"))
// Tests the getCanonicalLocales function for overriden Array[Symbol.species].
Object.defineProperty(Array, Symbol.species, {
value: function() {
return new Proxy(["?"], {
get(t, pk, r) {
return Reflect.get(t, pk, r);
},
defineProperty(t, pk) {
return true;
}
});
}
});
var arr = Intl.getCanonicalLocales("de-x-private");
assertEqArray(arr, ["de-x-private"]);
if (typeof reportCompare === "function")
reportCompare(0, 0);
|