LibWeb/CSS: Replace resolve_percentage_deprecated() with undeprecated

This commit is contained in:
Sam Atkins 2025-09-24 14:25:03 +01:00 committed by Tim Ledbetter
commit 995b7eb7b4
Notes: github-actions[bot] 2025-09-24 15:36:24 +00:00
6 changed files with 4 additions and 13 deletions

View file

@ -106,7 +106,7 @@ NonnullRefPtr<StyleValue const> NumberOrCalculated::create_style_value() const
Optional<Percentage> PercentageOrCalculated::resolve_calculated(NonnullRefPtr<CalculatedStyleValue const> const& calculated, CalculationResolutionContext const& context) const
{
return calculated->resolve_percentage_deprecated(context);
return calculated->resolve_percentage(context);
}
NonnullRefPtr<StyleValue const> PercentageOrCalculated::create_style_value() const