mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
11 lines
342 B
Plaintext
11 lines
342 B
Plaintext
#import <HTML/NavigationType.idl>
|
|
#import <HTML/NavigationHistoryEntry.idl>
|
|
|
|
// https://html.spec.whatwg.org/#navigationtransition
|
|
[Exposed=Window]
|
|
interface NavigationTransition {
|
|
readonly attribute NavigationType navigationType;
|
|
readonly attribute NavigationHistoryEntry from;
|
|
readonly attribute Promise<undefined> finished;
|
|
};
|