Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / prop-desc.js
blob64e7a8969a41d95700e0ba2d4110b8308dfdc867
1 // Copyright (C) 2019 Bocoup. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-constructor-properties-of-the-global-object-object
6 description: Property descriptor for Object
7 info: |
8   Every other data property described in clauses 18 through 26 and in Annex B.2
9   has the attributes { [[Writable]]: true, [[Enumerable]]: false,
10   [[Configurable]]: true } unless otherwise specified.
11 includes: [propertyHelper.js]
12 ---*/
14 verifyNotEnumerable(this, "Object");
15 verifyWritable(this, "Object");
16 verifyConfigurable(this, "Object");
18 reportCompare(0, 0);