mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 13:02:09 +02:00
LibWeb: Add the URL::username, URL::password & URL::origin attributes
This commit is contained in:
committed by
Andreas Kling
parent
fe32c9c3bd
commit
e89320887e
Notes:
sideshowbarker
2024-07-18 03:59:10 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/e89320887ef Pull-request: https://github.com/SerenityOS/serenity/pull/10022
@@ -2,10 +2,10 @@ interface URL {
|
||||
constructor(USVString url, optional USVString base);
|
||||
|
||||
stringifier attribute USVString href;
|
||||
// TODO: readonly attribute USVString origin;
|
||||
readonly attribute USVString origin;
|
||||
// TODO: attribute USVString protocol;
|
||||
// TODO: attribute USVString username;
|
||||
// TODO: attribute USVString password;
|
||||
attribute USVString username;
|
||||
attribute USVString password;
|
||||
// TODO: attribute USVString host;
|
||||
// TODO: attribute USVString hostname;
|
||||
// TODO: attribute USVString port;
|
||||
|
||||
Reference in New Issue
Block a user