2023-01-18 17:41:12 +00:00
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#location
|
2023-09-03 02:00:01 +12:00
|
|
|
[Exposed=Window]
|
2023-01-18 17:41:12 +00:00
|
|
|
interface Location { // but see also additional creation steps and overridden internal methods
|
|
|
|
[LegacyUnforgeable] stringifier attribute USVString href;
|
|
|
|
[LegacyUnforgeable] readonly attribute USVString origin;
|
|
|
|
[LegacyUnforgeable] attribute USVString protocol;
|
|
|
|
[LegacyUnforgeable] attribute USVString host;
|
|
|
|
[LegacyUnforgeable] attribute USVString hostname;
|
|
|
|
[LegacyUnforgeable] attribute USVString port;
|
|
|
|
[LegacyUnforgeable] attribute USVString pathname;
|
|
|
|
[LegacyUnforgeable] attribute USVString search;
|
|
|
|
[LegacyUnforgeable] attribute USVString hash;
|
|
|
|
|
2023-05-15 20:11:38 +01:00
|
|
|
[LegacyUnforgeable] undefined assign(USVString url);
|
2023-01-18 17:41:12 +00:00
|
|
|
[LegacyUnforgeable] undefined replace(USVString url);
|
|
|
|
[LegacyUnforgeable] undefined reload();
|
|
|
|
|
2025-05-25 13:30:54 +12:00
|
|
|
// Intentionally not implemented at this stage due to https://github.com/whatwg/html/issues/1918
|
|
|
|
// This is not currently implemented by Firefox due to the above, and only seems to be used by
|
|
|
|
// ad tech on real sites.
|
|
|
|
// [LegacyUnforgeable, SameObject] readonly attribute DOMStringList ancestorOrigins;
|
2023-01-18 17:41:12 +00:00
|
|
|
};
|