summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/UIEvents
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-09-28 15:39:35 +0200
committerAndreas Kling <kling@serenityos.org>2021-09-28 16:56:24 +0200
commit0af0ee42936f2268c223760357d34a5249e67af0 (patch)
treed8fe2ff906121743fcf44e68f887c1336638d967 /Userland/Libraries/LibWeb/UIEvents
parent554c344ffeebc29c4d899b0a60813753a8c80093 (diff)
downloadserenity-0af0ee42936f2268c223760357d34a5249e67af0.zip
LibWeb: Fire "keyup" events as well :^)
This was easy, now that we have KeyboardEvent.
Diffstat (limited to 'Userland/Libraries/LibWeb/UIEvents')
-rw-r--r--Userland/Libraries/LibWeb/UIEvents/EventNames.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/UIEvents/EventNames.h b/Userland/Libraries/LibWeb/UIEvents/EventNames.h
index 66a3bba882..9c71ef4ab2 100644
--- a/Userland/Libraries/LibWeb/UIEvents/EventNames.h
+++ b/Userland/Libraries/LibWeb/UIEvents/EventNames.h
@@ -16,6 +16,7 @@ namespace Web::UIEvents::EventNames {
#define ENUMERATE_UI_EVENTS \
__ENUMERATE_UI_EVENT(click) \
__ENUMERATE_UI_EVENT(keydown) \
+ __ENUMERATE_UI_EVENT(keyup) \
__ENUMERATE_UI_EVENT(mousedown) \
__ENUMERATE_UI_EVENT(mouseenter) \
__ENUMERATE_UI_EVENT(mouseleave) \