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
Notes: github-actions[bot] 2025-01-24 12:57:04 +00:00

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: