mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 08:28:11 +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
3 changed files with 10 additions and 0 deletions
|
@ -28,6 +28,7 @@ public:
|
|||
|
||||
virtual ~URLSearchParams() override;
|
||||
|
||||
size_t size() const;
|
||||
void append(DeprecatedString const& name, DeprecatedString const& value);
|
||||
void delete_(DeprecatedString const& name);
|
||||
DeprecatedString get(DeprecatedString const& name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue