annotate test/script/basic/JDK-8015349.js.EXPECTED @ 1434:4d320336c48c default tip

Added tag jdk9-b83 for changeset 21b86b980a5f
author lana
date Fri, 25 Sep 2015 22:59:35 -0700
parents a2e2797392b3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
301
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
1 'abc'.lastIndexOf('a', 4) = 0
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
2 'abc'.lastIndexOf('b', Infinity) = 1
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
3 'abc'.lastIndexOf('a', -1) = 0
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
4 'abc'.lastIndexOf('a', -Infinity) = 0
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
5 'oracle'.lastIndexOf('u') = -1
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
6 'hello'.lastIndexOf('l') = 3
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
7 'hello'.lastIndexOf('l', 2) = 2
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
8 'hello'.lastIndexOf('l', 3) = 3
a2e2797392b3 8015349: "abc".lastIndexOf("a",-1) should evaluate to 0 and not -1
sundar
parents:
diff changeset
9 'hello'.lastIndexOf('l', 1) = -1