2025-02-04 09:01:46 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/workers.html#workerlocation
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=Worker]
|
2022-02-06 23:12:57 -03:00
|
|
|
interface WorkerLocation {
|
|
|
|
|
stringifier readonly attribute USVString href;
|
|
|
|
|
readonly attribute USVString origin;
|
|
|
|
|
readonly attribute USVString protocol;
|
|
|
|
|
readonly attribute USVString host;
|
|
|
|
|
readonly attribute USVString hostname;
|
|
|
|
|
readonly attribute USVString port;
|
|
|
|
|
readonly attribute USVString pathname;
|
|
|
|
|
readonly attribute USVString search;
|
|
|
|
|
readonly attribute USVString hash;
|
|
|
|
|
};
|