| Index: third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| index a684c82c109577d5a75b6fea910debf71666963c..6e082fd93d97a99aa597e837d833952fc895bf03 100644
|
| --- a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| @@ -236,7 +236,7 @@ static bool blockHeightConstrained(const LayoutBlock* block) {
|
| // the content is already overflowing before autosizing kicks in.
|
| for (; block; block = block->containingBlock()) {
|
| const ComputedStyle& style = block->styleRef();
|
| - if (style.overflowY() >= EOverflow::Scroll)
|
| + if (style.overflowY() >= EOverflow::kScroll)
|
| return false;
|
| if (style.height().isSpecified() || style.maxHeight().isSpecified() ||
|
| block->isOutOfFlowPositioned()) {
|
|
|