| Index: third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp b/third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp
|
| index b8a277b0e289b40a01db59766ae44357ca8f32be..9912a1d7a566320949a2c0ee5a835ba891ef7eed 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp
|
| @@ -332,9 +332,9 @@ PassRefPtr<ComputedStyle> LayoutTextControlSingleLine::createInnerEditorStyle(
|
| if (inputElement()->shouldRevealPassword())
|
| textBlockStyle->setTextSecurity(TSNONE);
|
|
|
| - textBlockStyle->setOverflowX(OverflowScroll);
|
| + textBlockStyle->setOverflowX(EOverflow::Scroll);
|
| // overflow-y:visible doesn't work because overflow-x:scroll makes a layer.
|
| - textBlockStyle->setOverflowY(OverflowScroll);
|
| + textBlockStyle->setOverflowY(EOverflow::Scroll);
|
| RefPtr<ComputedStyle> noScrollbarStyle = ComputedStyle::create();
|
| noScrollbarStyle->setStyleType(PseudoIdScrollbar);
|
| noScrollbarStyle->setDisplay(EDisplay::None);
|
|
|