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
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

@ -123,8 +123,6 @@ public:
Optional<ComponentValue> parse_as_component_value();
Vector<ParsedFontFace::Source> parse_as_font_face_src();
Vector<ComponentValue> parse_as_list_of_component_values();
static NonnullRefPtr<CSSStyleValue> resolve_unresolved_style_value(ParsingParams const&, DOM::Element&, Optional<PseudoElement>, PropertyID, UnresolvedStyleValue const&);
@ -226,9 +224,6 @@ private:
OwnPtr<GeneralEnclosed> parse_general_enclosed(TokenStream<ComponentValue>&, MatchResult);
template<typename T>
Vector<ParsedFontFace::Source> parse_font_face_src(TokenStream<T>&);
enum class AllowBlankLayerName {
No,
Yes,