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

Unified Diff: test/mjsunit/harmony/regexp-property-general-category.js

Issue 1824613002: [regexp] require exact match for unicode property names. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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 | « test/mjsunit/harmony/regexp-property-exact-match.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/regexp-property-general-category.js
diff --git a/test/mjsunit/harmony/regexp-property-general-category.js b/test/mjsunit/harmony/regexp-property-general-category.js
index 55a45c36aa97c9dc547dbe66b2017dde841b7e07..e2015ad72db24ac29f5cf761e18f497fd663ccab 100644
--- a/test/mjsunit/harmony/regexp-property-general-category.js
+++ b/test/mjsunit/harmony/regexp-property-general-category.js
@@ -64,7 +64,4 @@ assertFalse(/\p{L}/u.test("\uA6EE"));
assertTrue(/\P{L}/u.test("\uA6EE"));
assertTrue(/\p{Lowercase_Letter}/u.test("a"));
-assertTrue(/\p{LowercaseLetter}/u.test("a"));
-assertTrue(/\p{Lowercaseletter}/u.test("a"));
-assertTrue(/\p{lowercase letter}/u.test("a"));
-assertTrue(/\p{lowercase letter}/u.test("a"));
+assertTrue(/\p{Math_Symbol}/u.test("+"));
« no previous file with comments | « test/mjsunit/harmony/regexp-property-exact-match.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698