mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 20:04:59 +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
|
@ -49,7 +49,7 @@ void HTMLIFrameElement::load_src(const String& value)
|
|||
if (value.is_null())
|
||||
return;
|
||||
|
||||
auto url = document().complete_url(value);
|
||||
auto url = document().parse_url(value);
|
||||
if (!url.is_valid()) {
|
||||
dbgln("iframe failed to load URL: Invalid URL: {}", value);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue