mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 02:21:53 +00:00
This is quite a frequent FIXME log on quite a few sites which does not serve much value at this stage. So instead of marking it with a FIXME extended IDL attribute, let's just comment it out.
22 lines
1.1 KiB
Text
22 lines
1.1 KiB
Text
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#location
|
|
[Exposed=Window]
|
|
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;
|
|
|
|
[LegacyUnforgeable] undefined assign(USVString url);
|
|
[LegacyUnforgeable] undefined replace(USVString url);
|
|
[LegacyUnforgeable] undefined reload();
|
|
|
|
// 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;
|
|
};
|