LibWeb/CSS: Replace resolve_angle_deprecated() with resolve_angle()

Gets us some WPT passes. 🎉
This commit is contained in:
Sam Atkins
2025-09-24 12:51:53 +01:00
committed by Tim Ledbetter
parent 525b5bf623
commit 375e32c523
Notes: github-actions[bot] 2025-09-24 15:37:14 +00:00
5 changed files with 11 additions and 20 deletions

View File

@@ -77,7 +77,6 @@ public:
bool resolves_to_angle() const { return m_resolved_type.matches_angle(m_context.percentages_resolve_as); }
bool resolves_to_angle_percentage() const { return m_resolved_type.matches_angle_percentage(m_context.percentages_resolve_as); }
Optional<Angle> resolve_angle_deprecated(CalculationResolutionContext const&) const;
Optional<Angle> resolve_angle(CalculationResolutionContext const&) const;
bool resolves_to_flex() const { return m_resolved_type.matches_flex(m_context.percentages_resolve_as); }