| // 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 generic |
| property that won't exist on 'O', and 'desc' is data descriptor, |
| test 'name' is defined in 'O' with all correct attribute values |
| includes: [propertyHelper.js] |
| Object.defineProperty(arrObj, "property", { |
| verifyEqualTo(arrObj, "property", 12); |
| verifyWritable(arrObj, "property"); |
| verifyEnumerable(arrObj, "property"); |
| verifyConfigurable(arrObj, "property"); |