LibWeb/CSS: Remove redundant font-face src parsing code

We now always parse this as a descriptor.
This commit is contained in:
Sam Atkins 2025-04-04 15:40:01 +01:00
parent 5f6972fc31
commit 5aeaeb3097
Notes: github-actions[bot] 2025-04-07 09:01:41 +00:00
3 changed files with 0 additions and 116 deletions

View file

@ -1617,11 +1617,6 @@ bool Parser::context_allows_quirky_length() const
return unitless_length_allowed;
}
Vector<ParsedFontFace::Source> Parser::parse_as_font_face_src()
{
return parse_font_face_src(m_token_stream);
}
Vector<ComponentValue> Parser::parse_as_list_of_component_values()
{
return parse_a_list_of_component_values(m_token_stream);