15.2.3.9-4-2.js (442B)
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.9-4-2 6 description: Object.freeze - 'O' is frozen already 7 ---*/ 8 9 var obj = {}; 10 11 obj.foo = 10; // default value of attributes: writable: true, enumerable: true 12 13 Object.freeze(obj); 14 15 Object.freeze(obj); 16 17 assert(Object.isFrozen(obj), 'Object.isFrozen(obj) !== true'); 18 19 reportCompare(0, 0);