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

Unified Diff: Source/core/layout/LayoutTable.cpp

Issue 1158193011: Include overflows from visual effects in LayoutTableSection. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/layout/LayoutTable.cpp
diff --git a/Source/core/layout/LayoutTable.cpp b/Source/core/layout/LayoutTable.cpp
index 023c8ceea4dcb8eb4fcd238ee2c6a424ddcf7493..01c1829685d41fc385a091da3a3b59f76ea39208 100644
--- a/Source/core/layout/LayoutTable.cpp
+++ b/Source/core/layout/LayoutTable.cpp
@@ -410,6 +410,7 @@ void LayoutTable::simplifiedNormalFlowLayout()
section->layoutRows();
section->computeOverflowFromCells();
section->updateLayerTransformAfterLayout();
+ section->addVisualEffectOverflow();
}
}
@@ -553,6 +554,7 @@ void LayoutTable::layout()
setLogicalHeight(logicalHeight() + section->logicalHeight());
section->updateLayerTransformAfterLayout();
+ section->addVisualEffectOverflow();
section = sectionBelow(section);
}

Powered by Google App Engine
This is Rietveld 408576698