S15.3.3_A2_T1.js (478B)
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 the Function constructor 7 is the Function prototype object 8 es5id: 15.3.3_A2_T1 9 description: Checking prototype of Function 10 ---*/ 11 assert( 12 Function.prototype.isPrototypeOf(Function), 13 'Function.prototype.isPrototypeOf(Function) must return true' 14 ); 15 16 reportCompare(0, 0);