summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/PageTransitionEvent.idl
blob: 3a438804301e1268290017ce9cb4a50151007de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import <DOM/Event.idl>

interface PageTransitionEvent : Event {
    constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});

    readonly attribute boolean persisted;
};

dictionary PageTransitionEventInit : EventInit {
    boolean persisted = false;
};