S15.4.2.2_A1.2_T1.js (513B)
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: The [[Class]] property of the newly constructed object is set to "Array" 7 es5id: 15.4.2.2_A1.2_T1 8 description: Checking use Object.prototype.toString 9 ---*/ 10 11 var x = new Array(0); 12 assert.sameValue(Object.prototype.toString.call(x), "[object Array]", 'Object.prototype.toString.call(new Array(0)) must return "[object Array]"'); 13 14 reportCompare(0, 0);