15.2.3.5-4-13.js (620B)
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-13 6 description: > 7 Object.create - argument 'Properties' is the JSON object (15.2.3.7 8 step 2) 9 ---*/ 10 11 var result = false; 12 13 Object.defineProperty(JSON, "prop", { 14 get: function() { 15 result = (this === JSON); 16 return {}; 17 }, 18 enumerable: true, 19 configurable: true 20 }); 21 22 var newObj = Object.create({}, JSON); 23 24 assert(result, 'result !== true'); 25 assert(newObj.hasOwnProperty("prop"), 'newObj.hasOwnProperty("prop") !== true'); 26 27 reportCompare(0, 0);