mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 12:06:07 +00:00
LibWeb: Add the URL::host, URL::hostname & URL:port attributes
This commit is contained in:
parent
e89320887e
commit
7f9818bcbc
Notes:
sideshowbarker
2024-07-18 03:59:06 +09:00
Author: https://github.com/IdanHo
Commit: 7f9818bcbc
Pull-request: https://github.com/SerenityOS/serenity/pull/10022
3 changed files with 82 additions and 3 deletions
|
@ -6,9 +6,9 @@ interface URL {
|
|||
// TODO: attribute USVString protocol;
|
||||
attribute USVString username;
|
||||
attribute USVString password;
|
||||
// TODO: attribute USVString host;
|
||||
// TODO: attribute USVString hostname;
|
||||
// TODO: attribute USVString port;
|
||||
attribute USVString host;
|
||||
attribute USVString hostname;
|
||||
attribute USVString port;
|
||||
// TODO: attribute USVString pathname;
|
||||
// TODO: attribute USVString search;
|
||||
[SameObject] readonly attribute URLSearchParams searchParams;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue