mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 09:18:55 +00:00
LibWeb: Add size to URLSearchParams
Added new size parameter to URLSearchParams. Spec: https://url.spec.whatwg.org/#dom-urlsearchparams-size Co-Authored-By: Linus Groh <mail@linusgroh.de>
This commit is contained in:
parent
e231f72f61
commit
3e2ceef8c3
Notes:
sideshowbarker
2024-07-17 07:09:53 +09:00
Author: https://github.com/CanadaHonk 🔰
Commit: 3e2ceef8c3
Pull-request: https://github.com/SerenityOS/serenity/pull/17578
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/linusg
3 changed files with 10 additions and 0 deletions
|
@ -4,6 +4,8 @@ interface URLSearchParams {
|
|||
|
||||
constructor(optional (sequence<sequence<USVString>> or record<USVString, USVString> or USVString) init = "");
|
||||
|
||||
readonly attribute unsigned long size;
|
||||
|
||||
undefined append(USVString name, USVString value);
|
||||
undefined delete(USVString name);
|
||||
USVString? get(USVString name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue