mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
19 lines
606 B
Plaintext
19 lines
606 B
Plaintext
interface URL {
|
|
constructor(USVString url, optional USVString base);
|
|
|
|
stringifier attribute USVString href;
|
|
readonly attribute USVString origin;
|
|
// TODO: attribute USVString protocol;
|
|
attribute USVString username;
|
|
attribute USVString password;
|
|
// TODO: attribute USVString host;
|
|
// TODO: attribute USVString hostname;
|
|
// TODO: attribute USVString port;
|
|
// TODO: attribute USVString pathname;
|
|
// TODO: attribute USVString search;
|
|
[SameObject] readonly attribute URLSearchParams searchParams;
|
|
// TODO: attribute USVString hash;
|
|
|
|
USVString toJSON();
|
|
};
|