S15.2.2.1_A2_T3.js (631B)
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 info: | 6 When the Object constructor is called with one argument value and 7 the value is a native ECMAScript object, do not create a new object but simply return value 8 es5id: 15.2.2.1_A2_T3 9 description: The value is an array 10 ---*/ 11 12 var arr = [1, 2, 3]; 13 14 var n_obj = new Object(arr); 15 16 arr.push(4); 17 18 assert.sameValue(n_obj, arr, 'The value of n_obj is expected to equal the value of arr'); 19 assert.sameValue(n_obj[3], 4, 'The value of n_obj[3] is expected to be 4'); 20 21 reportCompare(0, 0);