2023-08-23 10:47:05 -06:00
|
|
|
#import <DOM/EventHandler.idl>
|
|
|
|
#import <DOM/EventTarget.idl>
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtype
|
2023-09-03 02:00:01 +12:00
|
|
|
[Exposed=Window]
|
2023-08-23 10:47:05 -06:00
|
|
|
interface NavigationHistoryEntry : EventTarget {
|
2024-01-17 21:03:20 +01: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 10:47:05 -06:00
|
|
|
|
2024-01-17 21:03:20 +01:00
|
|
|
any getState();
|
2023-08-23 10:47:05 -06:00
|
|
|
|
2024-01-17 21:03:20 +01:00
|
|
|
attribute EventHandler ondispose;
|
2023-08-23 10:47:05 -06:00
|
|
|
};
|