ladybird/Userland/Libraries/LibWeb/HTML/NavigationTransition.idl
Andrew Kaster 3dd3b2019d LibWeb: Add NavigationTransition, a transient property of Navigation
This property is useful for web content to determine whether an ongoing
navigation has settled or not.
2023-08-24 11:03:57 -06:00

9 lines
298 B
Text

#import <HTML/NavigationType.idl>
#import <HTML/NavigationHistoryEntry.idl>
[Exposed=Window, UseNewAKString]
interface NavigationTransition {
readonly attribute NavigationType navigationType;
readonly attribute NavigationHistoryEntry from;
readonly attribute Promise<undefined> finished;
};