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.defineProperties - 'configurable' property of 'descObj' is
8 inherited accessor property without a get function (8.10.5 step
10 includes: [propertyHelper.js]
16 Object.defineProperty(proto, "configurable", {
20 var Con = function() {};
21 Con.prototype = proto;
22 var descObj = new Con();
24 Object.defineProperties(obj, {
28 assert(obj.hasOwnProperty("prop"));
29 verifyNotConfigurable(obj, "prop");