LibWeb: Implement the "insertUnorderedList" editing command

This commit is contained in:
Jelle Raaijmakers 2025-01-10 13:33:33 +01:00 committed by Andreas Kling
commit 1c3251e2d5
Notes: github-actions[bot] 2025-01-10 22:35:00 +00:00
4 changed files with 67 additions and 0 deletions

View file

@ -53,6 +53,9 @@ bool command_insert_ordered_list_indeterminate(DOM::Document const&);
bool command_insert_ordered_list_state(DOM::Document const&);
bool command_insert_paragraph_action(DOM::Document&, String const&);
bool command_insert_text_action(DOM::Document&, String const&);
bool command_insert_unordered_list_action(DOM::Document&, String const&);
bool command_insert_unordered_list_indeterminate(DOM::Document const&);
bool command_insert_unordered_list_state(DOM::Document const&);
bool command_italic_action(DOM::Document&, String const&);
bool command_remove_format_action(DOM::Document&, String const&);
bool command_strikethrough_action(DOM::Document&, String const&);