1 // Copyright (c) 2012 Ecma International. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
5 es5id: 15.2.3.6-4-354-11
7 Object.defineProperty will update [[Value]] attribute of named
8 property 'P' successfully when [[Configurable]] attribute is true
9 and [[Writable]] attribute is false, 'A' is an Array object
11 includes: [propertyHelper.js]
17 Object.defineProperty(obj, "prop", {
23 Object.defineProperty(obj, "prop", {
27 verifyEqualTo(obj, "prop", 1002);
29 verifyNotWritable(obj, "prop");
31 verifyNotEnumerable(obj, "prop");
33 verifyConfigurable(obj, "prop");