LibWeb: Implement more IntersectionObserver attributes

This commit is contained in:
Psychpsyo 2024-11-22 12:01:42 +01:00 committed by Andreas Kling
parent 7444f76b0d
commit 3e536a4cd7
Notes: github-actions[bot] 2024-11-23 08:53:22 +00:00
9 changed files with 345 additions and 17 deletions

View file

@ -6039,6 +6039,11 @@ Vector<ParsedFontFace::Source> Parser::parse_font_face_src(TokenStream<T>& compo
template Vector<ParsedFontFace::Source> Parser::parse_font_face_src(TokenStream<Token>& component_values);
template Vector<ParsedFontFace::Source> Parser::parse_font_face_src(TokenStream<ComponentValue>& component_values);
Vector<ComponentValue> Parser::parse_as_list_of_component_values()
{
return parse_a_list_of_component_values(m_token_stream);
}
RefPtr<CSSStyleValue> Parser::parse_list_style_value(TokenStream<ComponentValue>& tokens)
{
RefPtr<CSSStyleValue> list_position;