| // Copyright (c) 2012 Ecma International. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Object.defineProperty - 'O' is an Array, 'name' is an array index |
| property, the [[Writable]] field of 'desc' and the [[Writable]] |
| attribute value of 'name' are two booleans with different values |
| includes: [propertyHelper.js] |
| Object.defineProperty(arrObj, "0", { writable: false, configurable: true }); |
| Object.defineProperty(arrObj, "0", { writable: true }); |
| verifyEqualTo(arrObj, "0", undefined); |
| verifyWritable(arrObj, "0"); |
| verifyNotEnumerable(arrObj, "0"); |
| verifyConfigurable(arrObj, "0"); |