| 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 bf095167bf4de5c5e7f678fe2478021ef6c4499d..8dcca0a81c772ca7f1b358e2a7b3f5b04d171348 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -1114,8 +1114,9 @@ static bool shouldFlexCellChild(LayoutObject* cellDescendant) {
|
| return cellDescendant->isAtomicInlineLevel() ||
|
| (cellDescendant->isBox() &&
|
| toLayoutBox(cellDescendant)->style()->overflowY() !=
|
| - OverflowVisible &&
|
| - toLayoutBox(cellDescendant)->style()->overflowY() != OverflowHidden);
|
| + EOverflow::Visible &&
|
| + toLayoutBox(cellDescendant)->style()->overflowY() !=
|
| + EOverflow::Hidden);
|
| }
|
|
|
| void LayoutTableSection::layoutRows() {
|
|
|