S15.2.3_A2.js (511B)
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 Object constructor 7 is the Function prototype object 8 es5id: 15.2.3_A2 9 description: Checking Function.prototype.isPrototypeOf(Object) 10 ---*/ 11 assert( 12 !!Function.prototype.isPrototypeOf(Object), 13 'The value of !!Function.prototype.isPrototypeOf(Object) is expected to be true' 14 ); 15 16 reportCompare(0, 0);