mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00:00
18 lines
660 B
Text
18 lines
660 B
Text
interface URL {
|
|
constructor(USVString url, optional USVString base);
|
|
|
|
// TODO: stringifier attribute USVString href;
|
|
// TODO: readonly attribute USVString origin;
|
|
// TODO: attribute USVString protocol;
|
|
// TODO: attribute USVString username;
|
|
// TODO: attribute USVString password;
|
|
// TODO: attribute USVString host;
|
|
// TODO: attribute USVString hostname;
|
|
// TODO: attribute USVString port;
|
|
// TODO: attribute USVString pathname;
|
|
// TODO: attribute USVString search;
|
|
// TODO: [SameObject] readonly attribute URLSearchParams searchParams;
|
|
// TODO: attribute USVString hash;
|
|
|
|
// TODO: USVString toJSON();
|
|
};
|