mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
12 lines
373 B
Plaintext
12 lines
373 B
Plaintext
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationdestination-interface
|
|
[Exposed=Window]
|
|
interface NavigationDestination {
|
|
readonly attribute USVString url;
|
|
readonly attribute DOMString key;
|
|
readonly attribute DOMString id;
|
|
readonly attribute long long index;
|
|
readonly attribute boolean sameDocument;
|
|
|
|
any getState();
|
|
};
|