mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 12:18:25 +00:00
LibWeb: Rename parse_css() -> parse_css_stylesheet()
This commit is contained in:
committed by
Andreas Kling
parent
820a653725
commit
05bd0ca3ee
@@ -97,7 +97,7 @@ void HTMLLinkElement::resource_did_load()
|
||||
}
|
||||
}
|
||||
|
||||
auto sheet = parse_css(CSS::ParsingContext(document(), resource()->url()), resource()->encoded_data());
|
||||
auto sheet = parse_css_stylesheet(CSS::ParsingContext(document(), resource()->url()), resource()->encoded_data());
|
||||
if (!sheet) {
|
||||
dbgln_if(CSS_LOADER_DEBUG, "HTMLLinkElement: Failed to parse stylesheet: {}", resource()->url());
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user