S15.1.2.3_A4_T2.js (1072B)
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 Compute the longest prefix of Result(2), which might be Result(2) itself, 7 which satisfies the syntax of a StrDecimalLiteral 8 esid: sec-parsefloat-string 9 description: With ExponentIndicator 10 ---*/ 11 12 //CHECK#1 13 if (parseFloat("1ex") !== 1) { 14 throw new Test262Error('#1: parseFloat("1ex") === 1. Actual: ' + (parseFloat("1ex"))); 15 } 16 17 //CHECK#2 18 if (parseFloat("1e-x") !== 1) { 19 throw new Test262Error('#2: parseFloat("1e-x") === 1. Actual: ' + (parseFloat("1e-x"))); 20 } 21 22 //CHECK#3 23 if (parseFloat("1e1x") !== 10) { 24 throw new Test262Error('#3: parseFloat("1e1x") === 10. Actual: ' + (parseFloat("1e1x"))); 25 } 26 27 //CHECK#4 28 if (parseFloat("1e-1x") !== 0.1) { 29 throw new Test262Error('#4: parseFloat("1e-1x") === 0.1. Actual: ' + (parseFloat("1e-1x"))); 30 } 31 32 //CHECK#5 33 if (parseFloat("0.1e-1x") !== 0.01) { 34 throw new Test262Error('#5: parseFloat("0.1e-1x") === 0.01. Actual: ' + (parseFloat("0.1e-1x"))); 35 } 36 37 reportCompare(0, 0);