15.4.5.1-3.d-3.js (444B)
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 esid: sec-properties-of-array-instances-length 6 es5id: 15.4.5.1-3.d-3 7 description: Set array length property to max value 4294967295 (2**32-1,) 8 ---*/ 9 10 var a = []; 11 a.length = 4294967295; 12 13 assert.sameValue(a.length, 4294967295, 'The value of a.length is expected to be 4294967295'); 14 15 reportCompare(0, 0);