From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../ecma_5/Global/parseInt-default-to-decimal.js | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 js/src/tests/ecma_5/Global/parseInt-default-to-decimal.js (limited to 'js/src/tests/ecma_5/Global/parseInt-default-to-decimal.js') diff --git a/js/src/tests/ecma_5/Global/parseInt-default-to-decimal.js b/js/src/tests/ecma_5/Global/parseInt-default-to-decimal.js new file mode 100644 index 000000000..b2e1378a4 --- /dev/null +++ b/js/src/tests/ecma_5/Global/parseInt-default-to-decimal.js @@ -0,0 +1,31 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/licenses/publicdomain/ + +//----------------------------------------------------------------------------- +var BUGNUMBER = 583925; +var summary = + "parseInt should treat leading-zero inputs (with radix unspecified) as " + + "decimal, not octal (this changed in bug 786135)"; + +print(BUGNUMBER + ": " + summary); + +/************** + * BEGIN TEST * + **************/ + +assertEq(parseInt("08"), 8); +assertEq(parseInt("09"), 9); +assertEq(parseInt("014"), 14); + +function strictParseInt(s) { "use strict"; return parseInt(s); } + +assertEq(strictParseInt("08"), 8); +assertEq(strictParseInt("09"), 9); +assertEq(strictParseInt("014"), 14); + +/******************************************************************************/ + +if (typeof reportCompare === "function") + reportCompare(true, true); + +print("All tests passed!"); -- cgit v1.2.3