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

Unified Diff: LayoutTests/fast/js/regexp-no-extensions-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
« no previous file with comments | « LayoutTests/fast/js/regexp-no-extensions.html ('k') | LayoutTests/fast/js/regexp-non-capturing-groups.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/js/regexp-no-extensions-expected.txt
diff --git a/LayoutTests/fast/js/regexp-no-extensions-expected.txt b/LayoutTests/fast/js/regexp-no-extensions-expected.txt
deleted file mode 100644
index 4cd93ca69a66d16e5c8e65249e413626fe9555c9..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/regexp-no-extensions-expected.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-Tests that regular expressions do not have extensions that diverge from the JavaScript specification. Because WebKit originally used a copy of PCRE, various non-JavaScript regular expression features were historically present. Also tests various related edge cases.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS /\x{41}/.exec("yA1") is null
-PASS /[\x{41}]/.exec("yA1").toString() is "1"
-PASS /\x1g/.exec("x1g").toString() is "x1g"
-PASS /[\x1g]/.exec("x").toString() is "x"
-PASS /[\x1g]/.exec("1").toString() is "1"
-PASS /\2147483648/.exec(String.fromCharCode(140) + "7483648").toString() is String.fromCharCode(140) + "7483648"
-PASS /\4294967296/.exec("\"94967296").toString() is "\"94967296"
-FAIL /\8589934592/.exec("\\8589934592").toString() should be \8589934592. Was 8589934592.
-PASS "\nAbc\n".replace(/(\n)[^\n]+$/, "$1") is "\nAbc\n"
-PASS /x$/.exec("x\n") is null
-PASS /x++/ threw exception SyntaxError: Invalid regular expression: /x++/: Nothing to repeat.
-PASS /[]]/.exec("]") is null
-
-Octal escape sequences are in Annex B of the standard.
-
-PASS /\060/.exec("y01").toString() is "0"
-PASS /[\060]/.exec("y01").toString() is "0"
-PASS /\606/.exec("y06").toString() is "06"
-PASS /[\606]/.exec("y06").toString() is "0"
-PASS /[\606]/.exec("y6").toString() is "6"
-PASS /\101/.exec("yA1").toString() is "A"
-PASS /[\101]/.exec("yA1").toString() is "A"
-PASS /\1011/.exec("yA1").toString() is "A1"
-PASS /[\1011]/.exec("yA1").toString() is "A"
-PASS /[\1011]/.exec("y1").toString() is "1"
-PASS /\10q/.exec("y" + String.fromCharCode(8) + "q").toString() is String.fromCharCode(8) + "q"
-PASS /[\10q]/.exec("y" + String.fromCharCode(8) + "q").toString() is String.fromCharCode(8)
-PASS /\1q/.exec("y" + String.fromCharCode(1) + "q").toString() is String.fromCharCode(1) + "q"
-PASS /[\1q]/.exec("y" + String.fromCharCode(1) + "q").toString() is String.fromCharCode(1)
-PASS /[\1q]/.exec("yq").toString() is "q"
-FAIL /\8q/.exec("\\8q").toString() should be \8q. Was 8q.
-PASS /[\8q]/.exec("y8q").toString() is "8"
-PASS /[\8q]/.exec("yq").toString() is "q"
-PASS /(x)\1q/.exec("xxq").toString() is "xxq,x"
-PASS /(x)[\1q]/.exec("xxq").toString() is "xq,x"
-PASS /(x)[\1q]/.exec("xx" + String.fromCharCode(1)).toString() is "x" + String.fromCharCode(1) + ",x"
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « LayoutTests/fast/js/regexp-no-extensions.html ('k') | LayoutTests/fast/js/regexp-non-capturing-groups.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698