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

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

Issue 2578403002: Changed EVerticalAlign to an enum class and renamed its members (Closed)
Patch Set: Created 4 years 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: 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 2efec3e030e4ee9387d2a245fd729e6034037389..dbcd65e93a11fd68c06515ceee3e3272fe9e3c00 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -1199,7 +1199,7 @@ void LayoutTableSection::layoutRows() {
// dependencies and unstable layout.
if (state.isPaginated() &&
crossesPageBoundary(LayoutUnit(rowLogicalTop), LayoutUnit(rHeight)))
- cellVerticalAlign = VerticalAlignTop;
+ cellVerticalAlign = EVerticalAlign::Top;
else
cellVerticalAlign = cell->style()->verticalAlign();
cell->computeIntrinsicPadding(rHeight, cellVerticalAlign, layouter);

Powered by Google App Engine
This is Rietveld 408576698