LibWeb: Implement the "superscript" editing command

This commit is contained in:
Jelle Raaijmakers 2025-01-08 17:10:07 +01:00 committed by Andreas Kling
commit 679fbb5eda
Notes: github-actions[bot] 2025-01-10 22:36:10 +00:00
4 changed files with 100 additions and 0 deletions

View file

@ -49,5 +49,7 @@ bool command_style_with_css_action(DOM::Document&, String const&);
bool command_style_with_css_state(DOM::Document const&);
bool command_subscript_action(DOM::Document&, String const&);
bool command_subscript_indeterminate(DOM::Document const&);
bool command_superscript_action(DOM::Document&, String const&);
bool command_superscript_indeterminate(DOM::Document const&);
}