2025-12-04 15:57:54 +00:00
|
|
|
#import <HTML/NavigationDestination.idl>
|
2023-08-23 15:34:02 -06:00
|
|
|
#import <HTML/NavigationHistoryEntry.idl>
|
2025-12-04 15:57:54 +00:00
|
|
|
#import <HTML/NavigationType.idl>
|
2023-08-23 15:34:02 -06:00
|
|
|
|
2025-02-04 13:01:46 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtransition
|
2023-09-03 02:00:01 +12:00
|
|
|
[Exposed=Window]
|
2023-08-23 15:34:02 -06:00
|
|
|
interface NavigationTransition {
|
2024-01-17 21:03:20 +01:00
|
|
|
readonly attribute NavigationType navigationType;
|
|
|
|
|
readonly attribute NavigationHistoryEntry from;
|
2025-12-04 15:57:54 +00:00
|
|
|
readonly attribute NavigationDestination to;
|
2025-12-04 16:21:03 +00:00
|
|
|
readonly attribute Promise<undefined> committed;
|
2024-01-17 21:03:20 +01:00
|
|
|
readonly attribute Promise<undefined> finished;
|
2023-08-23 15:34:02 -06:00
|
|
|
};
|