LibWeb/CSS: Remove Flex as a percentage basis

`<flex-percentage>` is not a thing.
This commit is contained in:
Sam Atkins
2025-01-22 17:16:01 +00:00
committed by Jelle Raaijmakers
parent 8d3e1b07cd
commit 38b037990b

View File

@@ -31,7 +31,7 @@ struct CalculationContext {
class CalculatedStyleValue : public CSSStyleValue {
public:
using PercentageBasis = Variant<Empty, Angle, Flex, Frequency, Length, Time>;
using PercentageBasis = Variant<Empty, Angle, Frequency, Length, Time>;
class CalculationResult {
public: