ladybird/Libraries/LibWeb/HTML/NavigationTransition.idl

10 lines
398 B
Text
Raw Normal View History

// 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 NavigationDestination to;
readonly attribute Promise<undefined> committed;
readonly attribute Promise<undefined> finished;
};