We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7200b3a commit 71ec46bCopy full SHA for 71ec46b
Userland/Libraries/LibWeb/Layout/FlexFormattingContext.cpp
@@ -665,6 +665,10 @@ void FlexFormattingContext::determine_flex_base_size_and_hypothetical_main_size(
665
return false;
666
if (flex_basis.length_percentage->is_length())
667
return true;
668
+ if (flex_basis.length_percentage->is_calculated()) {
669
+ // FIXME: Handle calc() in used flex basis.
670
+ return false;
671
+ }
672
if (is_row_layout())
673
return m_flex_container_state.has_definite_width();
674
return m_flex_container_state.has_definite_height();
0 commit comments