15.2.3.3-3-6.js (634B)
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.3-3-6 6 description: > 7 Object.getOwnPropertyDescriptor - 'P' is inherited accessor 8 property 9 ---*/ 10 11 var proto = {}; 12 var fun = function() { 13 return "ownAccessorProperty"; 14 }; 15 Object.defineProperty(proto, "property", { 16 get: fun, 17 configurable: true 18 }); 19 20 var Con = function() {}; 21 Con.prototype = proto; 22 23 var child = new Con(); 24 25 var desc = Object.getOwnPropertyDescriptor(child, "property"); 26 27 assert.sameValue(typeof desc, "undefined", 'typeof desc'); 28 29 reportCompare(0, 0);