summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/URL/URLSearchParams.idl
AgeCommit message (Collapse)Author
2023-03-01LibWeb: Port URL and URLSearchParams to new StringKenneth Myhra
2023-02-28LibWeb: Add size to URLSearchParamsCanadaHonk
Added new size parameter to URLSearchParams. Spec: https://url.spec.whatwg.org/#dom-urlsearchparams-size Co-Authored-By: Linus Groh <mail@linusgroh.de>
2022-10-09LibWeb: Add Exposed attribute and IDL spec links where missingAndrew Kaster
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
2022-02-14LibWeb: Add support for the record variant of URLSearchParamsLuke Wilde
2022-01-31LibWeb: Accept array pairs in URLSearchParams constructorLuke Wilde
2021-10-26LibWeb: Implement URLSearchParams.getAllLuke Wilde
2021-09-28LibWeb: Make URLSearchParams iterableIdan Horowitz
This uses the new support for the iterable IDL property.
2021-09-13LibWeb: Add the URLSearchParams built-inIdan Horowitz
This is a very partial implementation, as some features (like 2 of the possible constructor types, iteration and the getAll method) are missing, and other's are not implemented due to the currently missing URL built-in.