diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/URL/URLSearchParams.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/URL/URLSearchParams.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/URL/URLSearchParams.cpp b/Userland/Libraries/LibWeb/URL/URLSearchParams.cpp index 14ef8d01d6..73ab3dc379 100644 --- a/Userland/Libraries/LibWeb/URL/URLSearchParams.cpp +++ b/Userland/Libraries/LibWeb/URL/URLSearchParams.cpp @@ -149,6 +149,13 @@ WebIDL::ExceptionOr<JS::NonnullGCPtr<URLSearchParams>> URLSearchParams::construc return URLSearchParams::create(realm, url_decode(stripped_init)); } +// https://url.spec.whatwg.org/#dom-urlsearchparams-size +size_t URLSearchParams::size() const +{ + // The size getter steps are to return this’s list’s size. + return m_list.size(); +} + void URLSearchParams::append(DeprecatedString const& name, DeprecatedString const& value) { // 1. Append a new name-value pair whose name is name and value is value, to list. |