mirror of https://github.com/tc39/test262.git
17 lines
488 B
JavaScript
17 lines
488 B
JavaScript
// Copyright 2016 Mozilla Corporation. All rights reserved.
|
|
// This code is governed by the license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-Intl.PluralRules.supportedLocalesOf
|
|
description: Tests that Intl.PluralRules.supportedLocalesOf.name is "supportedLocalesOf"
|
|
author: Zibi Braniecki
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
verifyProperty(Intl.PluralRules.supportedLocalesOf, "name", {
|
|
value: "supportedLocalesOf",
|
|
writable: false,
|
|
enumerable: false,
|
|
configurable: true,
|
|
});
|