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

Side by Side Diff: LayoutTests/fast/js/regexp-compile-expected.txt

Issue 14146002: Remove all generic expected results for which a generic Chromium expected result exists (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 Test RegExp.compile method.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS re.toString() is '/a/i'
7 PASS re.multiline is false
8 PASS re.ignoreCase is false
9 PASS re.global is false
10 PASS re.test('A') is false
11 PASS re.toString() is '/a/'
12 PASS re.toString() is '/b/g'
13 PASS re.toString() is '/c/'
14 PASS re.ignoreCase is true
15 PASS re.test('C') is true
16 PASS re.toString() is '/c/i'
17 PASS re.compile(new RegExp('c'), 'i'); threw exception TypeError: Cannot supply flags when constructing one RegExp from another..
18 PASS re.toString() is '/c/i'
19 PASS re.compile(new RegExp('+')); threw exception SyntaxError: Invalid regular e xpression: nothing to repeat.
20 PASS re.toString() is '/undefined/'
21 PASS re.toString() is '/null/'
22 PASS re.toString() is '/(?:)/'
23 PASS re.toString() is '/z/'
24 PASS re.lastIndex is 0
25 PASS re.lastIndex is 1
26 PASS successfullyParsed is true
27
28 TEST COMPLETE
29
OLDNEW
« no previous file with comments | « LayoutTests/fast/js/regexp-compile-crash-expected.txt ('k') | LayoutTests/fast/js/regexp-no-extensions-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698