michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: michael@0: var BUGNUMBER = 612838; michael@0: var summary = "String.prototype.indexOf with empty searchString"; michael@0: michael@0: print(BUGNUMBER + ": " + summary); michael@0: michael@0: assertEq("123".indexOf("", -1), 0); michael@0: assertEq("123".indexOf("", 0), 0); michael@0: assertEq("123".indexOf("", 1), 1); michael@0: assertEq("123".indexOf("", 3), 3); michael@0: assertEq("123".indexOf("", 4), 3); michael@0: assertEq("123".indexOf("", 12345), 3); michael@0: michael@0: reportCompare(true, true); michael@0: michael@0: print("All tests passed!");