LibWeb: Implement document.execCommand('insertLinebreak')

This commit is contained in:
Jelle Raaijmakers 2024-12-10 16:16:56 +01:00 committed by Jelle Raaijmakers
commit 495006ddb5
Notes: github-actions[bot] 2024-12-10 18:35:28 +00:00
4 changed files with 127 additions and 0 deletions

View file

@ -24,6 +24,7 @@ Optional<CommandDefinition const&> find_command_definition(FlyString const&);
bool command_default_paragraph_separator_action(DOM::Document&, String const&);
String command_default_paragraph_separator_value(DOM::Document const&);
bool command_delete_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_style_with_css_action(DOM::Document&, String const&);
bool command_style_with_css_state(DOM::Document const&);