ladybird/Libraries/LibWeb/HTML/NavigationTransition.idl
2025-02-05 16:04:50 -07:00

10 lines
373 B
Text

#import <HTML/NavigationType.idl>
#import <HTML/NavigationHistoryEntry.idl>
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtransition
[Exposed=Window]
interface NavigationTransition {
readonly attribute NavigationType navigationType;
readonly attribute NavigationHistoryEntry from;
readonly attribute Promise<undefined> finished;
};