Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTheme.cpp

Issue 1895723002: input[type=range]: box-shadow should not make -webkit-appearance none. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 80427aca4046736eebf16fe4cb4e32b72c3e3a02..e5320a00c95703d1c365dc36fdb15d0e9c1186dd 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
@@ -406,10 +406,6 @@ bool LayoutTheme::isControlStyled(const ComputedStyle& style) const
case TextFieldPart:
return style.hasAuthorBackground() || style.hasAuthorBorder() || style.boxShadow();
- case SliderHorizontalPart:
- case SliderVerticalPart:
- return style.boxShadow();
-
default:
return false;
}

Powered by Google App Engine
This is Rietveld 408576698