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-210.js
blobd6ff45fb8ced77c8f73e76208c0987514cab3c77
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-210
6 description: >
7     Object.create - 'writable' property of one property in
8     'Properties' is -0 (8.10.5 step 6.b)
9 includes: [propertyHelper.js]
10 ---*/
12 var newObj = Object.create({}, {
13   prop: {
14     writable: -0
15   }
16 });
18 assert(newObj.hasOwnProperty("prop"))
19 assert.sameValue(typeof newObj.prop, "undefined");
20 verifyNotWritable(newObj, "prop");
22 reportCompare(0, 0);