diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp index 2ec5e4c762..c8344fcd3a 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.cpp @@ -554,9 +554,9 @@ DeprecatedString HTMLInputElement::type() const VERIFY_NOT_REACHED(); } -void HTMLInputElement::set_type(DeprecatedString const& type) +WebIDL::ExceptionOr<void> HTMLInputElement::set_type(DeprecatedString const& type) { - MUST(set_attribute(HTML::AttributeNames::type, type)); + return set_attribute(HTML::AttributeNames::type, type); } // https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-simple-colour |