1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00

LibWeb: Allow HTMLElement with contenteditable=true to be focusable

This commit is contained in:
Aliaksandr Kalenik 2024-02-23 21:29:43 +01:00 committed by Alexander Kalenik
parent bcb68eb632
commit 05d5e11966
4 changed files with 25 additions and 0 deletions

View file

@ -93,6 +93,11 @@ bool HTMLElement::is_editable() const
}
}
bool HTMLElement::is_focusable() const
{
return m_content_editable_state == ContentEditableState::True;
}
StringView HTMLElement::content_editable() const
{
switch (m_content_editable_state) {