mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 12:37: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:
parent
30849b10d5
commit
e6abc1b44e
8 changed files with 103 additions and 1 deletions
|
@ -43,12 +43,15 @@ public:
|
|||
String to_string();
|
||||
|
||||
private:
|
||||
friend class URL;
|
||||
|
||||
explicit URLSearchParams(Vector<QueryParam> list)
|
||||
: m_list(move(list)) {};
|
||||
|
||||
void update();
|
||||
|
||||
Vector<QueryParam> m_list;
|
||||
WeakPtr<URL> m_url;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue