mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 11:07:35 +00:00
LibWeb: Add the missing PageTransitionEvent IDL constructor
This commit is contained in:
parent
4d71f22673
commit
1c4404c46a
4 changed files with 25 additions and 9 deletions
|
@ -1,5 +1,11 @@
|
|||
#import <DOM/Event.idl>
|
||||
|
||||
interface PageTransitionEvent : Event {
|
||||
constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});
|
||||
|
||||
readonly attribute boolean persisted;
|
||||
|
||||
};
|
||||
|
||||
dictionary PageTransitionEventInit : EventInit {
|
||||
boolean persisted = false;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue