LibWeb: Use DOMException in HTMLElement::set_content_editable()

This commit is contained in:
Linus Groh 2021-02-20 00:43:08 +01:00 committed by Andreas Kling
commit 4e1de09340
Notes: sideshowbarker 2024-07-18 22:08:01 +09:00
2 changed files with 9 additions and 6 deletions

View file

@ -45,7 +45,7 @@ public:
virtual bool is_editable() const final;
String content_editable() const;
void set_content_editable(const String&);
DOM::ExceptionOr<void> set_content_editable(const String&);
String inner_text();
void set_inner_text(StringView);