summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/ClientConnection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WebContent/ClientConnection.cpp')
-rw-r--r--Userland/Services/WebContent/ClientConnection.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/ClientConnection.cpp b/Userland/Services/WebContent/ClientConnection.cpp
index 0032be4353..b9a4d25e44 100644
--- a/Userland/Services/WebContent/ClientConnection.cpp
+++ b/Userland/Services/WebContent/ClientConnection.cpp
@@ -169,6 +169,11 @@ void ClientConnection::key_down(i32 key, unsigned int modifiers, u32 code_point)
page().handle_keydown((KeyCode)key, modifiers, code_point);
}
+void ClientConnection::key_up(i32 key, unsigned int modifiers, u32 code_point)
+{
+ page().handle_keyup((KeyCode)key, modifiers, code_point);
+}
+
void ClientConnection::debug_request(const String& request, const String& argument)
{
if (request == "dump-dom-tree") {