LibWeb: Send key events to the WebContent process

This makes contenteditable work in multi-process mode. :^)
This commit is contained in:
Andreas Kling 2020-08-03 19:58:59 +02:00
commit 6e221adade
Notes: sideshowbarker 2024-07-19 04:20:55 +09:00
5 changed files with 15 additions and 0 deletions

View file

@ -57,6 +57,7 @@ private:
virtual void handle(const Messages::WebContentServer::MouseDown&) override;
virtual void handle(const Messages::WebContentServer::MouseMove&) override;
virtual void handle(const Messages::WebContentServer::MouseUp&) override;
virtual void handle(const Messages::WebContentServer::KeyDown&) override;
void flush_pending_paint_requests();