mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
10 lines
342 B
Text
10 lines
342 B
Text
#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;
|
|
};
|