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

Side by Side Diff: LayoutTests/fast/regex/quantified-assertions-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 assertions followed by quantifiers.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6
7 Testing regexp: /(?=a){0}/gm
8 PASS regexp.test('a') is true
9 PASS regexp.lastIndex is 0
10
11 Testing regexp: /(?=a){1}/gm
12 PASS regexp.test('a') is true
13 PASS regexp.lastIndex is 0
14
15 Testing regexp: /(?!a){0}/gm
16 PASS regexp.test('b') is true
17 PASS regexp.lastIndex is 0
18
19 Testing regexp: /(?!a){1}/gm
20 PASS regexp.test('b') is true
21 PASS regexp.lastIndex is 0
22 PASS /^(?=a)?b$/.test("b") is true
23 PASS successfullyParsed is true
24
25 TEST COMPLETE
26
OLDNEW
« no previous file with comments | « LayoutTests/fast/regex/quantified-assertions.html ('k') | LayoutTests/fast/regex/repeat-match-waldemar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698