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

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

Issue 2413413003: Correctly check if we have a valid page height before checking remaining space. (Closed)
Patch Set: Created 4 years, 2 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/Source/core/layout/LayoutBox.cpp ('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/LayoutTableSection.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
index f8802d139c13fd2d530f187aec0b6f0dba3bc916..f4681d9d0e785dc840cb607ee76a055d8a595ab2 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -1183,7 +1183,8 @@ void LayoutTableSection::layoutRows() {
// fragmented differently, which could change its height and thus violate
// the requested alignment. Give up instead of risking circular
// dependencies and unstable layout.
- if (crossesPageBoundary(rowLogicalTop, LayoutUnit(rHeight)))
+ if (state.isPaginated() &&
+ crossesPageBoundary(rowLogicalTop, LayoutUnit(rHeight)))
cellVerticalAlign = VerticalAlignTop;
else
cellVerticalAlign = cell->style()->verticalAlign();
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBox.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698