| 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 c952ca7a98902d9536f7397c8dfff3257a5592a4..2bd98fe5747a87f6acce36d708f6977b84c7eb38 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTextControlSingleLine.cpp
|
| @@ -286,10 +286,10 @@ PassRefPtr<ComputedStyle> LayoutTextControlSingleLine::createInnerEditorStyle(co
|
| textBlockStyle->setOverflowX(OSCROLL);
|
| textBlockStyle->setOverflowY(OSCROLL);
|
| RefPtr<ComputedStyle> noScrollbarStyle = ComputedStyle::create();
|
| - noScrollbarStyle->setStyleType(SCROLLBAR);
|
| + noScrollbarStyle->setStyleType(PseudoIdScrollbar);
|
| noScrollbarStyle->setDisplay(NONE);
|
| textBlockStyle->addCachedPseudoStyle(noScrollbarStyle);
|
| - textBlockStyle->setHasPseudoStyle(SCROLLBAR);
|
| + textBlockStyle->setHasPseudoStyle(PseudoIdScrollbar);
|
|
|
| return textBlockStyle.release();
|
| }
|
|
|