| Index: third_party/WebKit/Source/core/layout/LayoutTheme.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
|
| index c42b215c57a01c1fec0a1b4ccdc19a3cfb46b7b9..1bc15042698aeee7337841b11beeeb2f36aa282b 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
|
| @@ -623,8 +623,9 @@ void LayoutTheme::adjustMenuListButtonStyle(ComputedStyle&, Element*) const {}
|
|
|
| void LayoutTheme::adjustSliderContainerStyle(ComputedStyle& style,
|
| Element* e) const {
|
| - if (e && (e->shadowPseudoId() == "-webkit-media-slider-container" ||
|
| - e->shadowPseudoId() == "-webkit-slider-container")) {
|
| + if (e &&
|
| + (e->shadowPseudoId() == "-webkit-media-slider-container" ||
|
| + e->shadowPseudoId() == "-webkit-slider-container")) {
|
| if (style.appearance() == SliderVerticalPart) {
|
| style.setTouchAction(TouchActionPanX);
|
| style.setAppearance(NoControlPart);
|
|
|