Newer
Older
minerva / Userland / Libraries / LibWeb / HTML / NavigationTransition.idl
@minerva minerva on 13 Jul 342 bytes Initial commit
#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;
};