Backed out 3 changesets (bug 1892041) for causing failures on async-module-does-not...
[gecko.git] / js / src / tests / test262 / built-ins / Object / create / 15.2.3.5-4-125.js
blob17eef5947c9347eea7515dbcd7a43ba639b47878
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.5-4-125
6 description: >
7     Object.create - 'configurable' property of one property in
8     'Properties' is undefined (8.10.5 step 4.b)
9 includes: [propertyHelper.js]
10 ---*/
12 var newObj = Object.create({}, {
13   prop: {
14     configurable: undefined
15   }
16 });
19 assert(newObj.hasOwnProperty("prop"));
20 verifyNotConfigurable(newObj, "prop");
22 reportCompare(0, 0);