LibWeb: Implement the "insertImage" editing command

This commit is contained in:
Jelle Raaijmakers 2025-01-10 09:45:02 +01:00 committed by Andreas Kling
commit 01ce9cb151
Notes: github-actions[bot] 2025-01-10 22:35:23 +00:00
4 changed files with 71 additions and 0 deletions

View file

@ -46,6 +46,7 @@ bool command_forward_delete_action(DOM::Document&, String const&);
bool command_indent_action(DOM::Document&, String const&);
bool command_insert_horizontal_rule_action(DOM::Document&, String const&);
bool command_insert_html_action(DOM::Document&, String const&);
bool command_insert_image_action(DOM::Document&, String const&);
bool command_insert_linebreak_action(DOM::Document&, String const&);
bool command_insert_paragraph_action(DOM::Document&, String const&);
bool command_italic_action(DOM::Document&, String const&);