2023-08-23 18:34:02 -03:00
|
|
|
#import <HTML/NavigationType.idl>
|
|
|
|
|
#import <HTML/NavigationHistoryEntry.idl>
|
|
|
|
|
|
2025-02-04 09:01:46 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigationtransition
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=Window]
|
2023-08-23 18:34:02 -03:00
|
|
|
interface NavigationTransition {
|
2024-01-17 17:03:20 -03:00
|
|
|
readonly attribute NavigationType navigationType;
|
|
|
|
|
readonly attribute NavigationHistoryEntry from;
|
|
|
|
|
readonly attribute Promise<undefined> finished;
|
2023-08-23 18:34:02 -03:00
|
|
|
};
|