Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: LayoutTests/fast/regex/assertion-expected.txt

Issue 20867002: Remove old tests that have been migrated to the v8 repo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 This page tests handling of parenthetical assertions.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS regex1.exec('xx') is ['xx','x']
7 PASS regex2.exec('baaabaac') is ['baaabaac','ba',undefined,'abaac']
8 PASS regex3.exec('aaab') is ['aab','a','aab']
9 PASS regex4.exec('aaab') is ['aab','a','aab']
10 PASS regex5.exec('P11') is ['P11','1','1']
11 PASS regex6.exec('ababbbcbc') is ['ababb','bb','b']
12 PASS regex7.exec('xx') is ['xx','x']
13 PASS regex8.exec('xx') is ['xx','x','x']
14 PASS regex9.exec('xy') is null
15 PASS regex10.exec('xy') is null
16 PASS regex11.exec('xy') is null
17 PASS regex12.exec('x') is null
18 PASS regex12.exec('xx') is ['xx','x']
19 PASS regex12.exec('xxy') is ['xx','x']
20 PASS regex13.exec('xzzzx') is ['xzzzx','x']
21 PASS regex13.exec('xzzzxy') is ['xzzzx','x']
22 PASS regex14.exec('aabc') is ['aabc','a','bc']
23 PASS regex14.exec('aabcx') is ['aabc','a','bc']
24 PASS regex15.exec('aabc') is ['aabc','a','bc']
25 PASS regex15.exec('aabcx') is ['aabc','a','bc']
26 PASS regex16.exec('ab') is null
27 PASS regex16.exec('abc') is ['abc','bc']
28 PASS regex17.exec('ab') is ['a','ab']
29 PASS regex17.exec('abc') is ['a','ab']
30 PASS regex18.exec('x') is ['x','']
31 PASS regex18.exec('xx') is ['x','xx']
32 PASS regex18.exec('xxx') is ['x','xx']
33 PASS regex19.exec('x') is ['x','',undefined]
34 PASS regex19.exec('xx') is ['x','xx','xx']
35 PASS regex19.exec('xxx') is ['x','xx','xx']
36 PASS regex20.exec('x') is null
37 PASS regex20.exec('xx') is ['x','xx']
38 PASS regex20.exec('xxx') is ['x','xx']
39 PASS regex21.exec('aab') is ['aab']
40 PASS regex22.exec('55up') is null
41 PASS regex23.exec('ax') is null
42 PASS regex24.exec('x') is null
43 PASS successfullyParsed is true
44
45 TEST COMPLETE
46
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698