Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Map / prototype / values / name.js
blob03827d01f3d9565b5f9acc19e32671bfe87c2005
1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 esid: sec-map.prototype.values
5 description: >
6   Map.prototype.values.name value and descriptor.
7 info: |
8   Map.prototype.values ()
10   17 ECMAScript Standard Built-in Objects
12 includes: [propertyHelper.js]
13 ---*/
15 assert.sameValue(
16   Map.prototype.values.name, 'values',
17   'The value of `Map.prototype.values.name` is `"values"`'
20 verifyNotEnumerable(Map.prototype.values, 'name');
21 verifyNotWritable(Map.prototype.values, 'name');
22 verifyConfigurable(Map.prototype.values, 'name');
24 reportCompare(0, 0);