| 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 688951d87aef2fb023fe421f8ba35964e12967de..df2aee284ba6d6eb3324fbaea5393ae000a4b7e4 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(OverflowScroll);
|
| textBlockStyle->setOverflowY(OverflowScroll);
|
| 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();
|
| }
|
|
|