LibWeb: Return DOMException instead of crashing when setting attributes

This commit is contained in:
PrestonLTaylor 2023-05-25 20:37:57 +01:00 committed by Andreas Kling
parent 6891676fce
commit 5d3b7a5ecc
Notes: sideshowbarker 2024-07-16 19:42:24 +09:00
24 changed files with 57 additions and 51 deletions

View file

@ -64,9 +64,9 @@ unsigned int HTMLTableCellElement::col_span() const
return attribute(HTML::AttributeNames::colspan).to_uint().value_or(1);
}
void HTMLTableCellElement::set_col_span(unsigned int value)
WebIDL::ExceptionOr<void> HTMLTableCellElement::set_col_span(unsigned int value)
{
MUST(set_attribute(HTML::AttributeNames::colspan, DeprecatedString::number(value)));
return set_attribute(HTML::AttributeNames::colspan, DeprecatedString::number(value));
}
unsigned int HTMLTableCellElement::row_span() const
@ -74,9 +74,9 @@ unsigned int HTMLTableCellElement::row_span() const
return attribute(HTML::AttributeNames::rowspan).to_uint().value_or(1);
}
void HTMLTableCellElement::set_row_span(unsigned int value)
WebIDL::ExceptionOr<void> HTMLTableCellElement::set_row_span(unsigned int value)
{
MUST(set_attribute(HTML::AttributeNames::rowspan, DeprecatedString::number(value)));
return set_attribute(HTML::AttributeNames::rowspan, DeprecatedString::number(value));
}
Optional<ARIA::Role> HTMLTableCellElement::default_role() const