1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:08:10 +00:00

LibWeb: Add the URL::searchParams attribute

This commit is contained in:
Idan Horowitz 2021-09-14 00:15:41 +03:00 committed by Andreas Kling
parent 1841fbd3e4
commit fe32c9c3bd
5 changed files with 15 additions and 1 deletions

View file

@ -75,4 +75,9 @@ DOM::ExceptionOr<void> URL::set_href(String const& href)
return {};
}
URLSearchParams const* URL::search_params() const
{
return m_query;
}
}