mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
LibWeb: Port DOM::Document from DeprecatedString
This commit is contained in:
committed by
Andreas Kling
parent
c4d3134436
commit
f976ec005c
@@ -162,7 +162,7 @@ WebIDL::ExceptionOr<void> HTMLFormElement::submit_form(JS::NonnullGCPtr<HTMLElem
|
||||
|
||||
// 13. If action is the empty string, let action be the URL of the form document.
|
||||
if (action.is_empty())
|
||||
action = form_document->url_string();
|
||||
action = form_document->url_string().to_deprecated_string();
|
||||
|
||||
// 14. Parse a URL given action, relative to the submitter element's node document. If this fails, return.
|
||||
// 15. Let parsed action be the resulting URL record.
|
||||
|
||||
Reference in New Issue
Block a user