| 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 61cc389f4821d01b822528cf4d3c1408b13495dc..3de5d5f1182ddf959451ac212379af1856ec20dc 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() >= OverflowScroll)
 | 
| +    if (style.overflowY() >= EOverflow::Scroll)
 | 
|        return false;
 | 
|      if (style.height().isSpecified() || style.maxHeight().isSpecified() ||
 | 
|          block->isOutOfFlowPositioned()) {
 | 
| 
 |