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

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

Issue 2660423004: Rename EOverflow values with k prefix. (Closed)
Patch Set: Rebase Created 3 years, 11 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: 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 fa380f86e460d91e9d5f2000ac52d80acbc0777b..263fa1f641aabbb3527b9b61ebb13a68eb20ec65 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -1103,8 +1103,8 @@ static bool shouldFlexCellChild(const LayoutTableCell& cell,
LayoutObject* cellDescendant) {
if (!cell.style()->logicalHeight().isSpecified())
return false;
- if (cellDescendant->style()->overflowY() == EOverflow::Visible ||
- cellDescendant->style()->overflowY() == EOverflow::Hidden)
+ if (cellDescendant->style()->overflowY() == EOverflow::kVisible ||
+ cellDescendant->style()->overflowY() == EOverflow::kHidden)
return true;
return cellDescendant->isBox() &&
toLayoutBox(cellDescendant)->shouldBeConsideredAsReplaced();

Powered by Google App Engine
This is Rietveld 408576698