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

Unified Diff: LayoutTests/fast/js/string-split-conformance-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, 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/js/string-split-conformance-expected.txt
diff --git a/LayoutTests/fast/js/string-split-conformance-expected.txt b/LayoutTests/fast/js/string-split-conformance-expected.txt
deleted file mode 100644
index cb0ba2668fbd1a65d43fdc65d96fda93d58ca2d4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/string-split-conformance-expected.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-This test checks for a regression against String#split is buggy.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS ''.split() is testCode[i][1]
-PASS ''.split(/./) is testCode[i][1]
-PASS ''.split(/.?/) is testCode[i][1]
-PASS ''.split(/.??/) is testCode[i][1]
-PASS 'ab'.split(/a*/) is testCode[i][1]
-PASS 'ab'.split(/a*?/) is testCode[i][1]
-PASS 'ab'.split(/(?:ab)/) is testCode[i][1]
-PASS 'ab'.split(/(?:ab)*/) is testCode[i][1]
-PASS 'ab'.split(/(?:ab)*?/) is testCode[i][1]
-PASS 'test'.split('') is testCode[i][1]
-PASS 'test'.split() is testCode[i][1]
-PASS '111'.split(1) is testCode[i][1]
-PASS 'test'.split(/(?:)/, 2) is testCode[i][1]
-PASS 'test'.split(/(?:)/, -1) is testCode[i][1]
-PASS 'test'.split(/(?:)/, undefined) is testCode[i][1]
-PASS 'test'.split(/(?:)/, null) is testCode[i][1]
-PASS 'test'.split(/(?:)/, NaN) is testCode[i][1]
-PASS 'test'.split(/(?:)/, true) is testCode[i][1]
-PASS 'test'.split(/(?:)/, '2') is testCode[i][1]
-PASS 'test'.split(/(?:)/, 'two') is testCode[i][1]
-PASS 'a'.split(/-/) is testCode[i][1]
-PASS 'a'.split(/-?/) is testCode[i][1]
-PASS 'a'.split(/-??/) is testCode[i][1]
-PASS 'a'.split(/a/) is testCode[i][1]
-PASS 'a'.split(/a?/) is testCode[i][1]
-PASS 'a'.split(/a??/) is testCode[i][1]
-PASS 'ab'.split(/-/) is testCode[i][1]
-PASS 'ab'.split(/-?/) is testCode[i][1]
-PASS 'ab'.split(/-??/) is testCode[i][1]
-PASS 'a-b'.split(/-/) is testCode[i][1]
-PASS 'a-b'.split(/-?/) is testCode[i][1]
-PASS 'a-b'.split(/-??/) is testCode[i][1]
-PASS 'a--b'.split(/-/) is testCode[i][1]
-PASS 'a--b'.split(/-?/) is testCode[i][1]
-PASS 'a--b'.split(/-??/) is testCode[i][1]
-PASS ''.split(/()()/) is testCode[i][1]
-PASS '.'.split(/()()/) is testCode[i][1]
-PASS '.'.split(/(.?)(.?)/) is testCode[i][1]
-PASS '.'.split(/(.??)(.??)/) is testCode[i][1]
-PASS '.'.split(/(.)?(.)?/) is testCode[i][1]
-PASS 'A<B>bold</B>and<CODE>coded</CODE>'.split(ecmaSampleRe) is testCode[i][1]
-PASS 'tesst'.split(/(s)*/) is testCode[i][1]
-PASS 'tesst'.split(/(s)*?/) is testCode[i][1]
-PASS 'tesst'.split(/(s*)/) is testCode[i][1]
-PASS 'tesst'.split(/(s*?)/) is testCode[i][1]
-PASS 'tesst'.split(/(?:s)*/) is testCode[i][1]
-PASS 'tesst'.split(/(?=s+)/) is testCode[i][1]
-PASS 'test'.split('t') is testCode[i][1]
-PASS 'test'.split('es') is testCode[i][1]
-PASS 'test'.split(/t/) is testCode[i][1]
-PASS 'test'.split(/es/) is testCode[i][1]
-PASS 'test'.split(/(t)/) is testCode[i][1]
-PASS 'test'.split(/(es)/) is testCode[i][1]
-PASS 'test'.split(/(t)(e)(s)(t)/) is testCode[i][1]
-PASS '.'.split(/(((.((.??)))))/) is testCode[i][1]
-PASS '.'.split(/(((((.??)))))/) is testCode[i][1]
-PASS 'hello'.split({toString:function(){return 'e';}}) is ["h", "llo"]
-PASS var a = 'hello'.split({toString:function(){separatorToStringCalled='OKAY';return 'e';}},0); a.push(separatorToStringCalled); a is ["OKAY"]
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « LayoutTests/fast/js/string-split-conformance.html ('k') | LayoutTests/fast/js/string-split-double-empty.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698