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

Side by Side Diff: LayoutTests/fast/regex/ecma-regex-examples-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: remove unused script-tests as well 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 the regex examples from the ECMA-262 specification.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS regex01.exec("abc") is ["a"]
7 PASS regex02.exec("abc") is ["abc", "a", "a", undefined, "bc", undefined, "bc"]
8 PASS regex03.exec("abcdefghi") is ["abcde"]
9 PASS regex04.exec("abcdefghi") is ["abc"]
10 PASS regex05.exec("aabaac") is ["aaba", "ba"]
11 PASS "aaaaaaaaaa,aaaaaaaaaaaaaaa".replace(regex06,"$1") is "aaaaa"
12 PASS regex07.exec("zaacbbbcac") is ["zaacbbbcac", "z", "ac", "a", undefined, "c" ]
13 PASS regex08.exec("b") is ["", undefined]
14 PASS regex09.exec("baaaac") is ["b", ""]
15 PASS regex10.exec("baaabac") is ["", "aaa"]
16 PASS regex11.exec("baaabac") is ["aba", "a"]
17 PASS regex12.exec("baaabaac") is ["baaabaac", "ba", undefined, "abaac"]
18 PASS successfullyParsed is true
19
20 TEST COMPLETE
21
OLDNEW
« no previous file with comments | « LayoutTests/fast/regex/ecma-regex-examples.html ('k') | LayoutTests/fast/regex/invalid-range-in-class.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698