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