2021-10-01 13:05:28 -03:00
|
|
|
#import <DOM/Event.idl>
|
|
|
|
|
|
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
|
|
|
};
|