Closed
Description
There have been some recent changes in the standards governing our new URL parser API. We need to keep up with those changes in our implementation of the API.
-
Add space to class string of iterator objects (whatwg/webidl@4fcfaea) (lib: add space to class string of iterator objects and updated tests accordingly #17558)
Change the'URLSearchParamsIterator'
inLine 1201 in e55b7d6
'URLSearchParams Iterator'
, and update tests if necessary. -
Percent-encode additional characters in "fragment state" (whatwg/url@7a3c69f) (url: added url fragment lookup table #17627)
- Add a new
FRAGMENT_ENCODE_SET
lookup table likeLines 215 to 280 in e55b7d6
C0_CONTROL_ENCODE_SET
, per spec. - Replace
C0_CONTROL_ENCODE_SET
with the new lookup table underkFragment
state inURL::Parse()
. - Port web-platform-tests/wpt@cb0662b to
test/fixtures/url-setter-tests.js
andtest/fixtures/url-tests.js
. - Make corresponding changes in the documentation in
doc/api/url.md
- Add a new