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

Unified Diff: third_party/WebKit/LayoutTests/fast/domurl/url-search.html

Issue 2686653003: URL.search should return the set value via setSearch (Closed)
Patch Set: fix Created 3 years, 10 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 | « no previous file | third_party/WebKit/Source/core/dom/DOMURLUtils.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/domurl/url-search.html
diff --git a/third_party/WebKit/LayoutTests/fast/domurl/url-search.html b/third_party/WebKit/LayoutTests/fast/domurl/url-search.html
index 41d471d2d8a4997ea5deb89a960c82fe2e22d147..6695359959ef6a77cade03d7dd619b487552f184 100644
--- a/third_party/WebKit/LayoutTests/fast/domurl/url-search.html
+++ b/third_party/WebKit/LayoutTests/fast/domurl/url-search.html
@@ -27,6 +27,9 @@ test(function() {
url.search = '?b';
assert_equals(url.search, '?b');
+ url.search = '??b';
+ assert_equals(url.search, '??b');
+
url.search = 'a#b';
assert_equals(url.search, '?a%23b');
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/DOMURLUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698