From b888d14e42b3b25d90ecbe8b8d63470c37665750 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Fri, 1 Oct 2021 19:31:25 +0300 Subject: [PATCH] LibWeb: Change the parent interface of MouseEvent to UIEvent This was accidentally set to Event --- Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl b/Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl index 452ef261d4..b8538cea66 100644 --- a/Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl +++ b/Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl @@ -1,4 +1,4 @@ -interface MouseEvent : Event { +interface MouseEvent : UIEvent { readonly attribute double offsetX; readonly attribute double offsetY;