mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 09:39:39 +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
Notes:
sideshowbarker
2024-07-17 21:16:31 +09:00
Author: https://github.com/awesomekling
Commit: 3194f10ad0
Pull-request: https://github.com/SerenityOS/serenity/pull/19996
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