PageTransitionEvent.idl 382 B

12345678910111213
  1. #import <DOM/Event.idl>
  2. // https://html.spec.whatwg.org/multipage/browsing-the-web.html#pagetransitionevent
  3. [Exposed=Window]
  4. interface PageTransitionEvent : Event {
  5. constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});
  6. readonly attribute boolean persisted;
  7. };
  8. dictionary PageTransitionEventInit : EventInit {
  9. boolean persisted = false;
  10. };