Bug 1909613 - Enable <details name=''> everywhere, r=emilio
[gecko.git] / js / src / tests / test262 / built-ins / Number / prototype / prop-desc.js
bloba94eefbae0f2e400ae73f06480aca2a65a8d5ca0
1 // Copyright (C) 2016 The V8 Project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-number.prototype
6 description: >
7   "prototype" property of Number
8 info: |
9   Number.prototype
11   This property has the attributes { [[Writable]]: false, [[Enumerable]]: false,
12   [[Configurable]]: false }.
13 includes: [propertyHelper.js]
14 ---*/
16 verifyNotEnumerable(Number, "prototype");
17 verifyNotWritable(Number, "prototype");
18 verifyNotConfigurable(Number, "prototype");
20 reportCompare(0, 0);