mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 06:37:52 +00:00
This property is useful for web content to determine whether an ongoing navigation has settled or not.
10 lines
298 B
Plaintext
10 lines
298 B
Plaintext
#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;
|
|
};
|