blob: ff59f3595738ef745e015e469a68407e4da0ef4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// |reftest| skip-if(!this.hasOwnProperty("Intl"))
var otherGlobal = newGlobal();
var pluralRules = new Intl.PluralRules();
var ccwPluralRules = new otherGlobal.Intl.PluralRules();
// Test Intl.PluralRules.prototype.select with a CCW object.
var Intl_PluralRules_select = Intl.PluralRules.prototype.select;
assertEq(Intl_PluralRules_select.call(ccwPluralRules, 0),
Intl_PluralRules_select.call(pluralRules, 0));
// Test Intl.PluralRules.prototype.resolvedOptions with a CCW object.
var Intl_PluralRules_resolvedOptions = Intl.PluralRules.prototype.resolvedOptions;
assertEq(deepEqual(Intl_PluralRules_resolvedOptions.call(ccwPluralRules),
Intl_PluralRules_resolvedOptions.call(pluralRules)),
true);
if (typeof reportCompare === "function")
reportCompare(true, true);
|