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

Unified 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, 5 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regex/assertion-expected.txt
diff --git a/LayoutTests/fast/regex/assertion-expected.txt b/LayoutTests/fast/regex/assertion-expected.txt
deleted file mode 100644
index 106608dffa642eb2a77141696010272064a6955c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regex/assertion-expected.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-This page tests handling of parenthetical assertions.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS regex1.exec('xx') is ['xx','x']
-PASS regex2.exec('baaabaac') is ['baaabaac','ba',undefined,'abaac']
-PASS regex3.exec('aaab') is ['aab','a','aab']
-PASS regex4.exec('aaab') is ['aab','a','aab']
-PASS regex5.exec('P11') is ['P11','1','1']
-PASS regex6.exec('ababbbcbc') is ['ababb','bb','b']
-PASS regex7.exec('xx') is ['xx','x']
-PASS regex8.exec('xx') is ['xx','x','x']
-PASS regex9.exec('xy') is null
-PASS regex10.exec('xy') is null
-PASS regex11.exec('xy') is null
-PASS regex12.exec('x') is null
-PASS regex12.exec('xx') is ['xx','x']
-PASS regex12.exec('xxy') is ['xx','x']
-PASS regex13.exec('xzzzx') is ['xzzzx','x']
-PASS regex13.exec('xzzzxy') is ['xzzzx','x']
-PASS regex14.exec('aabc') is ['aabc','a','bc']
-PASS regex14.exec('aabcx') is ['aabc','a','bc']
-PASS regex15.exec('aabc') is ['aabc','a','bc']
-PASS regex15.exec('aabcx') is ['aabc','a','bc']
-PASS regex16.exec('ab') is null
-PASS regex16.exec('abc') is ['abc','bc']
-PASS regex17.exec('ab') is ['a','ab']
-PASS regex17.exec('abc') is ['a','ab']
-PASS regex18.exec('x') is ['x','']
-PASS regex18.exec('xx') is ['x','xx']
-PASS regex18.exec('xxx') is ['x','xx']
-PASS regex19.exec('x') is ['x','',undefined]
-PASS regex19.exec('xx') is ['x','xx','xx']
-PASS regex19.exec('xxx') is ['x','xx','xx']
-PASS regex20.exec('x') is null
-PASS regex20.exec('xx') is ['x','xx']
-PASS regex20.exec('xxx') is ['x','xx']
-PASS regex21.exec('aab') is ['aab']
-PASS regex22.exec('55up') is null
-PASS regex23.exec('ax') is null
-PASS regex24.exec('x') is null
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698