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

Unified Diff: test/mjsunit/regress/regress-5036.js

Issue 2005753003: [regexp] fix /ui regexp desugaring for text nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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 | « src/regexp/regexp-parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-5036.js
diff --git a/test/mjsunit/regress/regress-crbug-605862.js b/test/mjsunit/regress/regress-5036.js
similarity index 75%
copy from test/mjsunit/regress/regress-crbug-605862.js
copy to test/mjsunit/regress/regress-5036.js
index 3124c0647f1c883a84b073dfd0c1af73ffdc856c..036edd949f55994e2e2fe4370ef6b44a088db9ae 100644
--- a/test/mjsunit/regress/regress-crbug-605862.js
+++ b/test/mjsunit/regress/regress-5036.js
@@ -4,5 +4,4 @@
// Flags: --harmony-unicode-regexps
-/[]*1/u.exec("\u1234");
-/[^\u0000-\u{10ffff}]*1/u.exec("\u1234");
+assertEquals(["1\u212a"], /\d\w/ui.exec("1\u212a"));
« no previous file with comments | « src/regexp/regexp-parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698