1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:17:35 +00:00

LibWeb: Add support for range deletion.

This commit is contained in:
asynts 2020-12-01 23:36:12 +01:00 committed by Andreas Kling
parent bbcc5a9332
commit 43dc47a494
8 changed files with 107 additions and 6 deletions

View file

@ -40,6 +40,7 @@ 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);
private: