Bindings: Remove exception handling for named_item_value

This commit is contained in:
Shannon Booth 2024-07-25 17:36:10 +12:00 committed by Andreas Kling
commit 9b59dc5e8b
Notes: github-actions[bot] 2024-07-26 12:27:24 +00:00
27 changed files with 29 additions and 32 deletions

View file

@ -224,7 +224,7 @@ JS::Value HTMLAllCollection::item_value(size_t index) const
return get_the_all_indexed_element(index);
}
WebIDL::ExceptionOr<JS::Value> HTMLAllCollection::named_item_value(FlyString const& name) const
JS::Value HTMLAllCollection::named_item_value(FlyString const& name) const
{
return named_item(name).visit(
[](Empty) -> JS::Value { return JS::js_undefined(); },