15.2.3.5-4-159.js (690B)
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.5-4-159 6 description: > 7 Object.create - 'value' property of one property in 'Properties' 8 is an inherited accessor property (8.10.5 step 5.a) 9 ---*/ 10 11 var proto = {}; 12 13 Object.defineProperty(proto, "value", { 14 get: function() { 15 return "inheritedAccessorProperty"; 16 } 17 }); 18 19 var ConstructFun = function() {}; 20 ConstructFun.prototype = proto; 21 22 var descObj = new ConstructFun(); 23 24 var newObj = Object.create({}, { 25 prop: descObj 26 }); 27 28 assert.sameValue(newObj.prop, "inheritedAccessorProperty", 'newObj.prop'); 29 30 reportCompare(0, 0);