LibWeb/CSS: Return GC::Ref from Parser::convert_to_style_declaration()

This commit is contained in:
Sam Atkins 2025-03-18 13:41:46 +00:00
commit 9b06f66571
Notes: github-actions[bot] 2025-03-19 13:54:06 +00:00
4 changed files with 7 additions and 31 deletions

View file

@ -1493,7 +1493,7 @@ void Parser::extract_property(Declaration const& declaration, PropertiesAndCusto
}
}
CSSStyleProperties* Parser::convert_to_style_declaration(Vector<Declaration> const& declarations)
GC::Ref<CSSStyleProperties> Parser::convert_to_style_declaration(Vector<Declaration> const& declarations)
{
PropertiesAndCustomProperties properties;
PropertiesAndCustomProperties& dest = properties;