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

Unified Diff: Source/core/rendering/RenderBox.cpp

Issue 194713009: Make sure table cells are laid out again when fragmentainer height changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use the old multicol implementation in the tests. The new one has a bug that needs to be fixed befo… Created 6 years, 9 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
Index: Source/core/rendering/RenderBox.cpp
diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp
index 63da47dd6c38ae0151e61c9aaa53724cb3e6ac3a..20df2f32461cf0c45df124a66550caa9a31c68bb 100644
--- a/Source/core/rendering/RenderBox.cpp
+++ b/Source/core/rendering/RenderBox.cpp
@@ -4143,6 +4143,18 @@ bool RenderBox::avoidsFloats() const
return isReplaced() || hasOverflowClip() || isHR() || isLegend() || isWritingModeRoot() || isFlexItemIncludingDeprecated();
}
+void RenderBox::markForPaginationRelayoutIfNeeded(SubtreeLayoutScope& layoutScope)
Julien - ping for review 2014/03/12 15:58:23 Ideally this should be only used for table parts b
mstensho (USE GERRIT) 2014/03/13 08:26:48 We used to only do this for blocks (well.. RenderB
+{
+ ASSERT(!needsLayout());
+ if (needsLayout())
Julien - ping for review 2014/03/12 15:58:23 This is a bad pattern. Either we know the ASSERT i
mstensho (USE GERRIT) 2014/03/13 08:26:48 Done. Indeed. I stole this code, but bad indeed. :
+ return;
+
+ // If fragmentation height has changed, we need to lay out. No need to enter the renderer if it
+ // is childless, though.
+ if (view()->layoutState()->pageLogicalHeightChanged() && firstChild())
+ layoutScope.setChildNeedsLayout(this);
+}
+
void RenderBox::addVisualEffectOverflow()
{
if (!style()->boxShadow() && !style()->hasBorderImageOutsets())

Powered by Google App Engine
This is Rietveld 408576698