1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_6/Number/parseFloat-01.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +// Any copyright is dedicated to the Public Domain. 1.5 +// http://creativecommons.org/licenses/publicdomain/ 1.6 + 1.7 +//----------------------------------------------------------------------------- 1.8 +var BUGNUMBER = 886949; 1.9 +var summary = "ES6 (draft May 2013) 15.7.3.10 Number.parseFloat(string)"; 1.10 + 1.11 +print(BUGNUMBER + ": " + summary); 1.12 + 1.13 +assertEq(Number.parseFloat("Infinity"), Infinity); 1.14 +assertEq(Number.parseFloat("+Infinity"), Infinity); 1.15 +assertEq(Number.parseFloat("-Infinity"), -Infinity); 1.16 + 1.17 +assertEq(Number.parseFloat("inf"), NaN); 1.18 +assertEq(Number.parseFloat("Inf"), NaN); 1.19 +assertEq(Number.parseFloat("infinity"), NaN); 1.20 + 1.21 +assertEq(Number.parseFloat("nan"), NaN); 1.22 +assertEq(Number.parseFloat("NaN"), NaN); 1.23 + 1.24 +if (typeof reportCompare === "function") 1.25 + reportCompare(true, true); 1.26 + 1.27 +print("All tests passed!");