From 81d7d684166efeabdc04e71141e45b1ba216dd8c Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Tue, 20 Apr 2021 15:19:59 +0300 Subject: [PATCH] LibWeb: Use correct event name for the onmousemove global event handler The current event name was accidentally set for the onmousedown event. --- Userland/Libraries/LibWeb/HTML/GlobalEventHandlers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/GlobalEventHandlers.h b/Userland/Libraries/LibWeb/HTML/GlobalEventHandlers.h index cb272d249b..8e47aa4484 100644 --- a/Userland/Libraries/LibWeb/HTML/GlobalEventHandlers.h +++ b/Userland/Libraries/LibWeb/HTML/GlobalEventHandlers.h @@ -67,7 +67,7 @@ E(onmousedown, UIEvents::EventNames::mousedown) \ E(onmouseenter, UIEvents::EventNames::mouseenter) \ E(onmouseleave, UIEvents::EventNames::mouseleave) \ - E(onmousemove, UIEvents::EventNames::mousedown) \ + E(onmousemove, UIEvents::EventNames::mousemove) \ E(onmouseout, UIEvents::EventNames::mouseout) \ E(onmouseover, UIEvents::EventNames::mouseover) \ E(onmouseup, UIEvents::EventNames::mouseup) \