1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

LibWeb: Add a bare implementation of the URL built-in

This only has the constructor implemented for now.
This commit is contained in:
Idan Horowitz 2021-09-14 00:10:22 +03:00 committed by Andreas Kling
parent 30849b10d5
commit e6abc1b44e
8 changed files with 103 additions and 1 deletions

View file

@ -206,6 +206,7 @@ class XMLHttpRequestEventTarget;
}
namespace Web::URL {
class URL;
class URLSearchParams;
}
@ -334,6 +335,9 @@ class XMLHttpRequestEventTargetWrapper;
class RangeConstructor;
class RangePrototype;
class RangeWrapper;
class URLConstructor;
class URLPrototype;
class URLWrapper;
class URLSearchParamsConstructor;
class URLSearchParamsPrototype;
class URLSearchParamsWrapper;