LibWeb/CSS: Split out @keyframes parsing code

Changes are very minimal, this is just a code move.
This commit is contained in:
Sam Atkins 2024-08-09 12:55:25 +01:00 committed by Andreas Kling
commit d5f3a610ac
Notes: github-actions[bot] 2024-08-10 08:39:01 +00:00
2 changed files with 117 additions and 103 deletions

View file

@ -222,6 +222,7 @@ private:
CSSRule* convert_to_rule(NonnullRefPtr<Rule>);
CSSMediaRule* convert_to_media_rule(NonnullRefPtr<Rule>);
JS::GCPtr<CSSKeyframesRule> convert_to_keyframes_rule(Rule&);
JS::GCPtr<CSSImportRule> convert_to_import_rule(Rule&);
JS::GCPtr<CSSNamespaceRule> convert_to_namespace_rule(Rule&);
JS::GCPtr<CSSSupportsRule> convert_to_supports_rule(Rule&);