S15.4.3_A1.1_T3.js (485B)
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 The value of the internal [[Prototype]] property of 7 the Array constructor is the Function prototype object 8 es5id: 15.4.3_A1.1_T3 9 description: Checking use isPrototypeOf 10 ---*/ 11 assert.sameValue( 12 Function.prototype.isPrototypeOf(Array), 13 true, 14 'Function.prototype.isPrototypeOf(Array) must return true' 15 ); 16 17 reportCompare(0, 0);