mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:48:12 +00:00
LibWeb: Explicitly instantiate a CSS parser template function
We're gonna call parse_a_comma_separated_list_of_component_values from another cpp file soon, so let's prepare for that by instantiating the specific version we need.
This commit is contained in:
parent
5625ca5cb9
commit
3194f10ad0
1 changed files with 2 additions and 0 deletions
|
@ -2278,6 +2278,8 @@ Vector<Vector<ComponentValue>> Parser::parse_a_comma_separated_list_of_component
|
|||
return list_of_component_value_lists;
|
||||
}
|
||||
|
||||
template Vector<Vector<ComponentValue>> Parser::parse_a_comma_separated_list_of_component_values(TokenStream<ComponentValue>&);
|
||||
|
||||
ElementInlineCSSStyleDeclaration* Parser::parse_as_style_attribute(DOM::Element& element)
|
||||
{
|
||||
auto declarations_and_at_rules = parse_a_list_of_declarations(m_token_stream);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue