diff --git a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp index a2e39d122c..525663dc19 100644 --- a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp @@ -310,7 +310,7 @@ float FlexFormattingContext::calculated_main_size(Box const& box) const bool FlexFormattingContext::is_cross_auto(Box const& box) const { auto& cross_length = is_row_layout() ? box.computed_values().height() : box.computed_values().width(); - return cross_length.has_value() && cross_length->length().is_auto(); + return cross_length.has_value() && cross_length->is_length() && cross_length->length().is_auto(); } bool FlexFormattingContext::is_main_axis_margin_first_auto(Box const& box) const