1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:57:44 +00:00

LibWeb: Add Event.initEvent

Used by YouTube after creating an event with Document.createEvent
This commit is contained in:
Luke 2021-04-10 20:11:04 +01:00 committed by Andreas Kling
parent 8da14bf880
commit fc9abee84b
3 changed files with 29 additions and 0 deletions

View file

@ -23,4 +23,6 @@ interface Event {
readonly attribute boolean isTrusted;
undefined initEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false);
};