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
commit 05d5e11966
Notes: sideshowbarker 2024-07-18 05:37:06 +09:00
4 changed files with 25 additions and 0 deletions

View file

@ -34,6 +34,7 @@ public:
void set_dir(String const&);
virtual bool is_editable() const final;
virtual bool is_focusable() const override;
StringView content_editable() const;
WebIDL::ExceptionOr<void> set_content_editable(StringView);