summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/String/15.5.4.7.js
blob: 4303b797f444edc4ad85c524daf1a747f31dfd15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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!");