| // Copyright (c) 2012 Ecma International. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Object.defineProperty will update [[Value]] attribute successfully |
| when [[Configurable]] attribute is true and [[Writable]] attribute |
| is false, 'O' is the global object (8.12.9 - step Note) |
| includes: [propertyHelper.js] |
| Object.defineProperty(obj, "property", { |
| Object.defineProperty(obj, "property", { |
| verifyEqualTo(obj, "property", 1002); |
| verifyNotWritable(obj, "property"); |
| verifyNotEnumerable(obj, "property"); |
| verifyConfigurable(obj, "property"); |