Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / string-match-expected.txt
blob4b28c4251a61a857164c0a5efbba07ce6b207eaa
1 String.match(…) test
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS testMatch(/x/g, false) is ["x","x"]
7 FAIL testMatch(/x/g, true) should throw an exception. Was x,x.
8 PASS testMatch(/x/, false) is ["x"]
9 PASS testMatch(/x/, true) is ["x"]
10 PASS testMatch(/x/g, false); re.lastIndex is 0
11 FAIL testMatch(/x/g, true); re.lastIndex should throw an exception. Was 3.
12 PASS testMatch(/x/, false); re.lastIndex is 3
13 PASS testMatch(/x/, true); re.lastIndex is 3
14 PASS successfullyParsed is true
16 TEST COMPLETE