|
Implement URLSearchParams.
Provide an implementation of the URLUtils' query object, URLSearchParams:
http://url.spec.whatwg.org/#interface-urlsearchparams
It providing a more structured view of the URLUtils.search attribute,
allowing its name-value pairs to be separately manipulated and
updated. The URLSearchParams object can be separately constructed also.
The implementation depends on Oilpan to conveniently express the dependencies
between a URL query object and its URL objects (i.e., objects implementing
the URLUtils interface.)
R=arv@chromium.org,ch.dumez@samsung.com,abarth@chromium.org
BUG= 303152
Total comments: 10
Total comments: 21
Total comments: 16
Total comments: 3
Total comments: 11
|
Unified diffs |
Side-by-side diffs |
Stats (+1161 lines, -38 lines) |
 |
A |
LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-searchParams.js
|
View
|
1 chunk |
+40 lines, -0 lines |
0 comments
|
 |
A + |
LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-searchParams.html
|
View
|
1 chunk |
+1 line, -1 line |
0 comments
|
 |
A |
LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-searchParams-expected.txt
|
View
|
1 chunk |
+31 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/resources/testharness-extras.js
|
View
|
1 chunk |
+25 lines, -0 lines |
0 comments
|
 |
M |
LayoutTests/fast/domurl/url-constructor.html
|
View
|
2 chunks |
+11 lines, -26 lines |
0 comments
|
 |
M |
LayoutTests/fast/domurl/url-search.html
|
View
|
3 chunks |
+2 lines, -4 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams.html
|
View
|
1 chunk |
+147 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-append.html
|
View
|
1 chunk |
+45 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-constructor.html
|
View
|
1 chunk |
+132 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-delete.html
|
View
|
1 chunk |
+36 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-get.html
|
View
|
1 chunk |
+27 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-getAll.html
|
View
|
1 chunk |
+31 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-has.html
|
View
|
1 chunk |
+30 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-set.html
|
View
|
1 chunk |
+28 lines, -0 lines |
0 comments
|
 |
A |
LayoutTests/fast/domurl/url-searchparams-toString.html
|
View
|
1 chunk |
+118 lines, -0 lines |
0 comments
|
 |
M |
LayoutTests/virtual/stable/webexposed/global-constructors-listing-expected.txt
|
View
|
1 chunk |
+1 line, -0 lines |
0 comments
|
 |
M |
LayoutTests/webexposed/global-constructors-listing-expected.txt
|
View
|
1 chunk |
+1 line, -0 lines |
0 comments
|
 |
M |
Source/core/core.gypi
|
View
|
2 chunks |
+3 lines, -0 lines |
0 comments
|
 |
M |
Source/core/dom/DOMURL.h
|
View
|
2 chunks |
+2 lines, -1 line |
0 comments
|
 |
M |
Source/core/dom/DOMURL.cpp
|
View
|
3 chunks |
+13 lines, -2 lines |
0 comments
|
 |
A |
Source/core/dom/DOMURLSearchParams.h
|
View
|
1 chunk |
+65 lines, -0 lines |
0 comments
|
 |
A |
Source/core/dom/DOMURLSearchParams.cpp
|
View
|
1 chunk |
+212 lines, -0 lines |
0 comments
|
 |
M |
Source/core/dom/DOMURLUtils.h
|
View
|
2 chunks |
+38 lines, -2 lines |
0 comments
|
 |
M |
Source/core/dom/DOMURLUtils.cpp
|
View
|
3 chunks |
+87 lines, -0 lines |
0 comments
|
 |
A |
Source/core/dom/URLSearchParams.idl
|
View
|
1 chunk |
+25 lines, -0 lines |
0 comments
|
 |
M |
Source/core/dom/URLUtils.idl
|
View
|
1 chunk |
+1 line, -2 lines |
0 comments
|
 |
M |
Source/core/html/HTMLAnchorElement.h
|
View
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
 |
M |
Source/core/html/HTMLAnchorElement.cpp
|
View
|
2 chunks |
+7 lines, -0 lines |
0 comments
|
Total messages: 44 (1 generated)
|