diff --git a/Libraries/LibWeb/CSS/ComputedProperties.cpp b/Libraries/LibWeb/CSS/ComputedProperties.cpp index 751a5b00ef9..aa083be4921 100644 --- a/Libraries/LibWeb/CSS/ComputedProperties.cpp +++ b/Libraries/LibWeb/CSS/ComputedProperties.cpp @@ -2052,7 +2052,8 @@ WillChange ComputedProperties::will_change() const CSSPixels ComputedProperties::font_size() const { - return property(PropertyID::FontSize).as_length().length().absolute_length_to_px(); + // FIXME: Respect animated font-size here once we store it in computed form + return property(PropertyID::FontSize, WithAnimationsApplied::No).as_length().length().absolute_length_to_px(); } }