LibWeb: Implement document.execCommand("defaultParagraphSeparator")

This commit is contained in:
Jelle Raaijmakers 2024-11-29 11:56:28 +01:00 committed by Andreas Kling
commit 4a64557876
Notes: github-actions[bot] 2024-11-30 16:37:16 +00:00
3 changed files with 38 additions and 0 deletions

View file

@ -21,6 +21,8 @@ struct CommandDefinition {
Optional<CommandDefinition const&> find_command_definition(FlyString const&);
// Command implementations
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&);
}