S15.1.2.3_A4_T1.js (1597B)
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: Some wrong number 10 ---*/ 11 12 //CHECK#1 13 if (parseFloat("0x") !== 0) { 14 throw new Test262Error('#1: parseFloat("0x") === 0. Actual: ' + (parseFloat("0x"))); 15 } 16 17 //CHECK#2 18 if (parseFloat("11x") !== 11) { 19 throw new Test262Error('#2: parseFloat("11x") === 11. Actual: ' + (parseFloat("11x"))); 20 } 21 22 //CHECK#3 23 if (parseFloat("11s1") !== 11) { 24 throw new Test262Error('#3: parseFloat("11s1") === 11. Actual: ' + (parseFloat("11s1"))); 25 } 26 27 //CHECK#4 28 if (parseFloat("11.s1") !== 11) { 29 throw new Test262Error('#4: parseFloat("11.s1") === 11. Actual: ' + (parseFloat("11.s1"))); 30 } 31 32 //CHECK#5 33 if (parseFloat(".0s1") !== 0) { 34 throw new Test262Error('#5: parseFloat(".0s1") === 0. Actual: ' + (parseFloat(".0s1"))); 35 } 36 37 //CHECK#6 38 if (parseFloat("1.s1") !== 1) { 39 throw new Test262Error('#6: parseFloat("1.s1") === 1. Actual: ' + (parseFloat("1.s1"))); 40 } 41 42 //CHECK#7 43 if (parseFloat("1..1") !== 1) { 44 throw new Test262Error('#7: parseFloat("1..1") === 1. Actual: ' + (parseFloat("1..1"))); 45 } 46 47 //CHECK#8 48 if (parseFloat("0.1.1") !== 0.1) { 49 throw new Test262Error('#8: parseFloat("0.1.1") === 0.1. Actual: ' + (parseFloat("0.1.1"))); 50 } 51 52 //CHECK#9 53 if (parseFloat("0. 1") !== 0) { 54 throw new Test262Error('#9: parseFloat("0. 1") === 0. Actual: ' + (parseFloat("0. 1"))); 55 } 56 57 reportCompare(0, 0);