15.2.3.7-6-a-44.js (572B)
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-6-a-44 6 description: > 7 Object.defineProperties - both desc.value and P.value are NaN 8 (8.12.9 step 6) 9 includes: [propertyHelper.js] 10 ---*/ 11 12 13 var obj = {}; 14 15 var desc = { 16 value: NaN 17 }; 18 Object.defineProperty(obj, "foo", desc); 19 20 Object.defineProperties(obj, { 21 foo: { 22 value: NaN 23 } 24 }); 25 26 verifyProperty(obj, "foo", { 27 writable: false, 28 enumerable: false, 29 configurable: false, 30 }); 31 32 reportCompare(0, 0);