| 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();
|
|
|