15.2.3.6-3-247.js (698B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 15.2.3.6-3-247 6 description: > 7 Object.defineProperty - 'set' property in 'Attributes' is an 8 inherited accessor property without a get function (8.10.5 step 9 8.a) 10 includes: [propertyHelper.js] 11 ---*/ 12 13 var obj = {}; 14 var proto = {}; 15 Object.defineProperty(proto, "set", { 16 set: function() {} 17 }); 18 19 var ConstructFun = function() {}; 20 ConstructFun.prototype = proto; 21 22 var child = new ConstructFun(); 23 24 Object.defineProperty(obj, "property", child); 25 26 assert(obj.hasOwnProperty("property")); 27 verifyNotWritable(obj, "property"); 28 29 reportCompare(0, 0);