summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Page/Page.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb/Page/Page.cpp')
-rw-r--r--Libraries/LibWeb/Page/Page.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Libraries/LibWeb/Page/Page.cpp b/Libraries/LibWeb/Page/Page.cpp
index f02cfc9385..a9a1bfccbe 100644
--- a/Libraries/LibWeb/Page/Page.cpp
+++ b/Libraries/LibWeb/Page/Page.cpp
@@ -65,4 +65,9 @@ bool Page::handle_mousemove(const Gfx::IntPoint& position, unsigned buttons, uns
return main_frame().event_handler().handle_mousemove(position, buttons, modifiers);
}
+bool Page::handle_keydown(KeyCode key, unsigned modifiers, u32 code_point)
+{
+ return main_frame().event_handler().handle_keydown(key, modifiers, code_point);
+}
+
}