S15.4.2.2_A1.1_T1.js (632B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-array-len 6 info: | 7 The [[Prototype]] property of the newly constructed object 8 is set to the original Array prototype object, the one that 9 is the initial value of Array.prototype 10 es5id: 15.4.2.2_A1.1_T1 11 description: > 12 Create new property of Array.prototype. When new Array object has 13 this property 14 ---*/ 15 16 Array.prototype.myproperty = 1; 17 var x = new Array(0); 18 assert.sameValue(x.myproperty, 1, 'The value of x.myproperty is expected to be 1'); 19 20 reportCompare(0, 0);