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

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
parent dd621cc650
commit 4e1de09340
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);