mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
13 lines
382 B
Text
13 lines
382 B
Text
#import <DOM/Event.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#pagetransitionevent
|
|
[Exposed=Window]
|
|
interface PageTransitionEvent : Event {
|
|
constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});
|
|
|
|
readonly attribute boolean persisted;
|
|
};
|
|
|
|
dictionary PageTransitionEventInit : EventInit {
|
|
boolean persisted = false;
|
|
};
|