Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBox.cpp

Issue 1892813002: [css-grid] Floated grid containers have indefinite width (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css-grid-layout/floated-grid-container-percentage-tracks.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
index 1731bfdc8fb11f2106df08cf8099ecb01905d4c0..007c6f9921e3a9d44d789a19655c9229f9ecde7a 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
@@ -4174,7 +4174,7 @@ void LayoutBox::clearLayoutOverflow()
static bool logicalWidthIsResolvable(const LayoutBox& layoutBox)
{
const LayoutBox* box = &layoutBox;
- while (!box->isLayoutView() && !box->isOutOfFlowPositioned()
+ while (!box->isLayoutView() && !box->isFloatingOrOutOfFlowPositioned()
&& (box->style()->logicalWidth().isAuto() || box->isAnonymousBlock())
&& !box->hasOverrideContainingBlockLogicalWidth())
box = box->containingBlock();
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/css-grid-layout/floated-grid-container-percentage-tracks.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698