1 // Copyright (c) 2012 Ecma International. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
7 Object.defineProperty - 'O' is an Arguments object, 'name' is own
8 property of 'O', and is deleted afterwards, and 'desc' is accessor
9 descriptor, test 'name' is redefined in 'O' with all correct
10 attribute values (10.6 [[DefineOwnProperty]] step 3)
11 includes: [propertyHelper.js]
21 function setFunc(value) {
22 this.setVerifyHelpProp = value;
24 Object.defineProperty(arguments, "0", {
30 verifyEqualTo(arguments, "0", getFunc());
32 verifyWritable(arguments, "0", "setVerifyHelpProp");
34 verifyEnumerable(arguments, "0");
36 verifyConfigurable(arguments, "0");