name.js (510B)
1 // Copyright 2016 Mozilla Corporation. All rights reserved. 2 // This code is governed by the license found in the LICENSE file. 3 4 /*--- 5 esid: sec-Intl.PluralRules.supportedLocalesOf 6 description: Tests that Intl.PluralRules.supportedLocalesOf.name is "supportedLocalesOf" 7 author: Zibi Braniecki 8 includes: [propertyHelper.js] 9 ---*/ 10 11 verifyProperty(Intl.PluralRules.supportedLocalesOf, "name", { 12 value: "supportedLocalesOf", 13 writable: false, 14 enumerable: false, 15 configurable: true, 16 }); 17 18 reportCompare(0, 0);