2021-10-01 13:05:28 -03:00
|
|
|
#import <DOM/Event.idl>
|
|
|
|
|
|
2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#pagetransitionevent
|
2023-09-02 11:00:01 -03:00
|
|
|
[Exposed=Window]
|
2021-09-26 07:39:27 -03:00
|
|
|
interface PageTransitionEvent : Event {
|
2021-10-01 13:05:28 -03:00
|
|
|
constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});
|
2021-09-26 07:39:27 -03:00
|
|
|
|
|
|
|
|
readonly attribute boolean persisted;
|
2021-10-01 13:05:28 -03:00
|
|
|
};
|
2021-09-26 07:39:27 -03:00
|
|
|
|
2021-10-01 13:05:28 -03:00
|
|
|
dictionary PageTransitionEventInit : EventInit {
|
|
|
|
|
boolean persisted = false;
|
2021-09-26 07:39:27 -03:00
|
|
|
};
|