mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 03:02:27 -05:00
d4a890080d
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
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;
|
|
};
|