mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 17:14:58 +00:00
LibWeb: Rename Document::complete_url() => parse_url()
This better matches the spec nomenclature.
This commit is contained in:
parent
0839442da5
commit
e1fb8bef09
12 changed files with 18 additions and 16 deletions
|
@ -75,7 +75,7 @@ void HTMLFormElement::submit_form(RefPtr<HTMLElement> submitter, bool from_submi
|
|||
return;
|
||||
}
|
||||
|
||||
URL url(document().complete_url(action()));
|
||||
URL url(document().parse_url(action()));
|
||||
|
||||
if (!url.is_valid()) {
|
||||
dbgln("Failed to submit form: Invalid URL: {}", action());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue