Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Array / prototype / keys / length.js
blob160dea0a2dd303ff3e40965a4dfb7205911e9e1a
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-array.prototype.keys
5 description: >
6   Array.prototype.keys.length value and descriptor.
7 info: |
8   22.1.3.13 Array.prototype.keys ( )
10   17 ECMAScript Standard Built-in Objects
12 includes: [propertyHelper.js]
13 ---*/
15 verifyProperty(Array.prototype.keys, "length", {
16   value: 0,
17   writable: false,
18   enumerable: false,
19   configurable: true
20 });
22 reportCompare(0, 0);