1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:47:44 +00:00

LibWeb: Add support for cursor movement and delete.

This commit is contained in:
asynts 2020-12-02 15:00:55 +01:00 committed by Andreas Kling
parent e96faea1a2
commit 78558c9f30
3 changed files with 50 additions and 29 deletions

View file

@ -39,7 +39,6 @@ public:
virtual ~EditEventHandler() = default;
virtual void handle_delete(DOM::Position);
virtual void handle_delete(DOM::Range);
virtual void handle_insert(DOM::Position, u32 code_point);