1
Fork 0
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:
Idan Horowitz 2021-10-01 19:05:28 +03:00 committed by Andreas Kling
parent 4d71f22673
commit 1c4404c46a
4 changed files with 25 additions and 9 deletions

View file

@ -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;
};