mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:37:34 +00:00
LibWeb: Add NavigationTransition, a transient property of Navigation
This property is useful for web content to determine whether an ongoing navigation has settled or not.
This commit is contained in:
parent
4989375191
commit
3dd3b2019d
11 changed files with 118 additions and 1 deletions
9
Userland/Libraries/LibWeb/HTML/NavigationTransition.idl
Normal file
9
Userland/Libraries/LibWeb/HTML/NavigationTransition.idl
Normal file
|
@ -0,0 +1,9 @@
|
|||
#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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue