S15.7.3_A6.js (439B)
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 Number constructor has the property "POSITIVE_INFINITY" 6 es5id: 15.7.3_A6 7 description: Checking existence of the property "POSITIVE_INFINITY" 8 ---*/ 9 assert( 10 Number.hasOwnProperty("POSITIVE_INFINITY"), 11 'Number.hasOwnProperty("POSITIVE_INFINITY") must return true' 12 ); 13 14 reportCompare(0, 0);