summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/String/15.5.4.7.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/non262/String/15.5.4.7.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/non262/String/15.5.4.7.js b/js/src/tests/non262/String/15.5.4.7.js
new file mode 100644
index 0000000000..4303b797f4
--- /dev/null
+++ b/js/src/tests/non262/String/15.5.4.7.js
@@ -0,0 +1,20 @@
+/*
+ * Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/licenses/publicdomain/
+ */
+
+var BUGNUMBER = 612838;
+var summary = "String.prototype.indexOf with empty searchString";
+
+print(BUGNUMBER + ": " + summary);
+
+assertEq("123".indexOf("", -1), 0);
+assertEq("123".indexOf("", 0), 0);
+assertEq("123".indexOf("", 1), 1);
+assertEq("123".indexOf("", 3), 3);
+assertEq("123".indexOf("", 4), 3);
+assertEq("123".indexOf("", 12345), 3);
+
+reportCompare(true, true);
+
+print("All tests passed!");