mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00:00
17 lines
471 B
Plaintext
17 lines
471 B
Plaintext
#import <DOM/EventHandler.idl>
|
|
#import <DOM/EventTarget.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtype
|
|
[Exposed=Window, UseNewAKString]
|
|
interface NavigationHistoryEntry : EventTarget {
|
|
readonly attribute USVString? url;
|
|
readonly attribute DOMString key;
|
|
readonly attribute DOMString id;
|
|
readonly attribute long long index;
|
|
readonly attribute boolean sameDocument;
|
|
|
|
any getState();
|
|
|
|
attribute EventHandler ondispose;
|
|
};
|