Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / defineProperty / 15.2.3.6-3-99.js
blobaabe445befb4a713c35308b3039ca8cce5367abf
1 // Copyright (c) 2012 Ecma International.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es5id: 15.2.3.6-3-99
6 description: >
7     Object.defineProperty - 'configurable' property in 'Attributes' is
8     undefined (8.10.5 step 4.b)
9 includes: [propertyHelper.js]
10 ---*/
12 var obj = {};
14 Object.defineProperty(obj, "property", {
15   configurable: undefined
16 });
18 assert(obj.hasOwnProperty("property"));
19 verifyNotConfigurable(obj, "property");
21 reportCompare(0, 0);