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

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, 6 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 | « LayoutTests/paint/tables/table-section-visual-overflow-expected.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « LayoutTests/paint/tables/table-section-visual-overflow-expected.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698