summaryrefslogtreecommitdiff
path: root/test/built-ins/parseInt/S15.1.2.2_A2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/parseInt/S15.1.2.2_A2_T1.js')
-rw-r--r--test/built-ins/parseInt/S15.1.2.2_A2_T1.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T1.js b/test/built-ins/parseInt/S15.1.2.2_A2_T1.js
new file mode 100644
index 000000000..f7705d94b
--- /dev/null
+++ b/test/built-ins/parseInt/S15.1.2.2_A2_T1.js
@@ -0,0 +1,38 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: Operator remove leading StrWhiteSpaceChar
+es5id: 15.1.2.2_A2_T1
+description: "StrWhiteSpaceChar :: TAB (U+0009)"
+---*/
+
+//CHECK#1
+if (parseInt("\u00091") !== parseInt("1")) {
+ $ERROR('#1: parseInt("\\u00091") === parseInt("1"). Actual: ' + (parseInt("\u00091")));
+}
+
+//CHECK#2
+if (parseInt("\u0009\u0009-1") !== parseInt("-1")) {
+ $ERROR('#2: parseInt("\\u0009\\u0009-1") === parseInt("-1"). Actual: ' + (parseInt("\u0009\u0009-1")));
+}
+
+//CHECK#3
+if (parseInt(" 1") !== parseInt("1")) {
+ $ERROR('#3: parseInt(" 1") === parseInt("1"). Actual: ' + (parseInt(" 1")));
+}
+
+//CHECK#4
+if (parseInt(" 1") !== parseInt("1")) {
+ $ERROR('#4: parseInt(" 1") === parseInt("1"). Actual: ' + (parseInt(" 1")));
+}
+
+//CHECK#5
+if (parseInt(" \u0009 \u0009-1") !== parseInt("-1")) {
+ $ERROR('#5: parseInt(" \\u0009 \\u0009-1") === parseInt("-1"). Actual: ' + (parseInt(" \u0009 \u0009-1")));
+}
+
+//CHECK#6
+if (isNaN(parseInt("\u0009")) !== true) {
+ $ERROR('#6: parseInt("\\u0009") === Not-a-Number. Actual: ' + (parseInt("\u0009")));
+}