LibWeb: Implement the "removeFormat" editing command

This commit is contained in:
Jelle Raaijmakers 2025-01-08 16:47:11 +01:00 committed by Andreas Kling
commit aee8a75c40
Notes: github-actions[bot] 2025-01-10 22:36:28 +00:00
6 changed files with 143 additions and 0 deletions

View file

@ -67,6 +67,7 @@ bool is_name_of_an_element_with_inline_contents(FlyString const&);
bool is_non_list_single_line_container(GC::Ref<DOM::Node>);
bool is_prohibited_paragraph_child(GC::Ref<DOM::Node>);
bool is_prohibited_paragraph_child_name(FlyString const&);
bool is_remove_format_candidate(GC::Ref<DOM::Node>);
bool is_simple_indentation_element(GC::Ref<DOM::Node>);
bool is_simple_modifiable_element(GC::Ref<DOM::Node>);
bool is_single_line_container(GC::Ref<DOM::Node>);