summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-10-01 19:31:25 +0300
committerAndreas Kling <kling@serenityos.org>2021-10-01 20:14:45 +0200
commitb888d14e42b3b25d90ecbe8b8d63470c37665750 (patch)
tree6f2df10f9a3d7551412881d486f7ece0ed24d7f9
parentac25c28c4359e8d4cc59196e5f76141044238921 (diff)
downloadserenity-b888d14e42b3b25d90ecbe8b8d63470c37665750.zip
LibWeb: Change the parent interface of MouseEvent to UIEvent
This was accidentally set to Event
-rw-r--r--Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl2
1 files changed, 1 insertions, 1 deletions
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;