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