S15.1.2.2_A9.6.js (463B)
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: The parseInt property has not prototype property 6 esid: sec-parseint-string-radix 7 description: Checking parseInt.prototype 8 ---*/ 9 10 assert.sameValue(Object.prototype.hasOwnProperty.call(parseInt, "prototype"), false, 'Object.prototype.hasOwnProperty.call(parseInt, "prototype") must return false'); 11 12 reportCompare(0, 0);