mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
LibURL+LibWeb: Port URL::complete_url to Optional
Removing one more source of the URL::is_valid API.
This commit is contained in:
committed by
Tim Ledbetter
parent
356728b1e0
commit
53826995f6
@@ -194,7 +194,9 @@ String FormAssociatedElement::form_action() const
|
||||
}
|
||||
|
||||
auto document_base_url = html_element.document().base_url();
|
||||
return document_base_url.complete_url(form_action_attribute.value()).to_string();
|
||||
if (auto maybe_url = document_base_url.complete_url(form_action_attribute.value()); maybe_url.has_value())
|
||||
return maybe_url->to_string();
|
||||
return {};
|
||||
}
|
||||
|
||||
WebIDL::ExceptionOr<void> FormAssociatedElement::set_form_action(String const& value)
|
||||
|
||||
Reference in New Issue
Block a user