| 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 02aa2ecebfee008d8c1f002e5d6484bb8d5d992e..cf41bf8a6fb9d3c009af4077934419314f087030 100644
|
| --- a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
|
| @@ -225,7 +225,7 @@ static bool blockHeightConstrained(const LayoutBlock* block)
|
| // FIXME: Consider additional heuristics, such as ignoring fixed heights if the content is already overflowing before autosizing kicks in.
|
| for (; block; block = block->containingBlock()) {
|
| const ComputedStyle& style = block->styleRef();
|
| - if (style.overflowY() >= OSCROLL)
|
| + if (style.overflowY() >= OverflowScroll)
|
| return false;
|
| if (style.height().isSpecified() || style.maxHeight().isSpecified() || block->isOutOfFlowPositioned()) {
|
| // Some sites (e.g. wikipedia) set their html and/or body elements to height:100%,
|
|
|