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

LibWeb: Implement ErrorEvent

This will be used by the new EventTarget to check if it needs to do
special error event handling. Currently it isn't used for anything
else.
This commit is contained in:
Luke Wilde 2021-10-14 16:53:39 +01:00 committed by Andreas Kling
parent dc42ca37bd
commit 11eedc309a
5 changed files with 98 additions and 0 deletions

View file

@ -128,6 +128,7 @@ class CanvasRenderingContext2D;
class CloseEvent;
class DOMParser;
class DOMStringMap;
class ErrorEvent;
struct EventHandler;
class EventLoop;
class HTMLAnchorElement;
@ -330,6 +331,7 @@ class DOMRectWrapper;
class DOMStringMapWrapper;
class DOMTokenListWrapper;
class ElementWrapper;
class ErrorEventWrapper;
class EventListenerWrapper;
class EventTargetWrapper;
class EventWrapper;