mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 02:08:53 +00:00
LibWeb: Rename parse_css()
-> parse_css_stylesheet()
This commit is contained in:
parent
820a653725
commit
05bd0ca3ee
Notes:
sideshowbarker
2024-07-18 05:37:06 +09:00
Author: https://github.com/AtkinsSJ
Commit: 05bd0ca3ee
Pull-request: https://github.com/SerenityOS/serenity/pull/13361
6 changed files with 7 additions and 7 deletions
|
@ -126,7 +126,7 @@ void HTMLStyleElement::update_a_style_block()
|
|||
|
||||
// FIXME: This is a bit awkward, as the spec doesn't actually tell us when to parse the CSS text,
|
||||
// so we just do it here and pass the parsed sheet to create_a_css_style_sheet().
|
||||
auto sheet = parse_css(CSS::ParsingContext(document()), text_content());
|
||||
auto sheet = parse_css_stylesheet(CSS::ParsingContext(document()), text_content());
|
||||
if (!sheet)
|
||||
return;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue