S15.1.2.3_A5_T3.js (733B)
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: Return the number value for the MV of Result(4) 6 esid: sec-parsefloat-string 7 description: Checking . DecimalDigits ExponentPart_opt 8 ---*/ 9 10 //CHECK#1 11 if (parseFloat("+.1") !== 0.1) { 12 throw new Test262Error('#1: parseFloat("+.1") === 0.1. Actual: ' + (parseFloat("+.1"))); 13 } 14 15 //CHECK#2 16 if (parseFloat(".01") !== 0.01) { 17 throw new Test262Error('#2: parseFloat(".01") === 0.01. Actual: ' + (parseFloat(".01"))); 18 } 19 20 //CHECK#3 21 if (parseFloat("+.22e-1") !== 0.022) { 22 throw new Test262Error('#3: parseFloat("+.22e-1") === 0.022. Actual: ' + (parseFloat("+.22e-1"))); 23 } 24 25 reportCompare(0, 0);