1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:37:44 +00:00

LibWeb: Move url_origin() to URL/URL.{cpp,h}

This commit is contained in:
Linus Groh 2022-10-13 18:25:00 +02:00
parent 93405b4aff
commit c380d2cfdc
3 changed files with 37 additions and 25 deletions

View file

@ -71,4 +71,6 @@ private:
JS::NonnullGCPtr<URLSearchParams> m_query;
};
HTML::Origin url_origin(AK::URL const&);
}