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