15.2.3.6-4-349.js (567B)
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-349 6 description: > 7 ES5 Attributes - property ([[Writable]] is true, [[Enumerable]] is 8 false, [[Configurable]] is false) is undeletable 9 includes: [propertyHelper.js] 10 ---*/ 11 12 var obj = {}; 13 14 Object.defineProperty(obj, "prop", { 15 value: 2010, 16 writable: true, 17 enumerable: false, 18 configurable: false 19 }); 20 21 verifyProperty(obj, "prop", { 22 value: 2010, 23 configurable: false, 24 }); 25 26 reportCompare(0, 0);