2023-08-23 16:35:25 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationdestination-interface
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=Window]
|
2023-08-23 16:35:25 -03:00
|
|
|
interface NavigationDestination {
|
2024-01-17 17:03:20 -03:00
|
|
|
readonly attribute USVString url;
|
|
|
|
|
readonly attribute DOMString key;
|
|
|
|
|
readonly attribute DOMString id;
|
|
|
|
|
readonly attribute long long index;
|
|
|
|
|
readonly attribute boolean sameDocument;
|
2023-08-23 16:35:25 -03:00
|
|
|
|
2024-01-17 17:03:20 -03:00
|
|
|
any getState();
|
2023-08-23 16:35:25 -03:00
|
|
|
};
|