15.2.3.7-3-1.js (522B)
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.7-3-1 6 description: > 7 Object.defineProperties - enumerable own data property of 8 'Properties' is defined in 'O' 9 ---*/ 10 11 var obj = {}; 12 var props = {}; 13 Object.defineProperty(props, "prop", { 14 value: {}, 15 enumerable: true 16 }); 17 18 Object.defineProperties(obj, props); 19 20 assert(obj.hasOwnProperty("prop"), 'obj.hasOwnProperty("prop") !== true'); 21 22 reportCompare(0, 0);