| 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 dcf9c0fb53e9942db4a441854397997fae53d2a3..f0ea86080a7dd1e9e301bbcf43ea7f5bdaf50658 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(EOverflow::Scroll);
|
| + textBlockStyle->setOverflowX(EOverflow::kScroll);
|
| // overflow-y:visible doesn't work because overflow-x:scroll makes a layer.
|
| - textBlockStyle->setOverflowY(EOverflow::Scroll);
|
| + textBlockStyle->setOverflowY(EOverflow::kScroll);
|
| RefPtr<ComputedStyle> noScrollbarStyle = ComputedStyle::create();
|
| noScrollbarStyle->setStyleType(PseudoIdScrollbar);
|
| noScrollbarStyle->setDisplay(EDisplay::None);
|
|
|