15.2.3.12-2-a-14.js (383B)
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.12-2-a-14 6 description: Object.isFrozen - 'O' is an Array object 7 ---*/ 8 9 var obj = [2]; 10 obj.len = 200; 11 12 Object.preventExtensions(obj); 13 14 assert.sameValue(Object.isFrozen(obj), false, 'Object.isFrozen(obj)'); 15 16 reportCompare(0, 0);