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

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

Issue 2760063003: Remove the -webkit-fullscreen-volume-* pseudos, they're dead code. (Closed)
Patch Set: Created 3 years, 9 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/LayoutSliderThumb.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutSliderThumb.cpp b/third_party/WebKit/Source/core/layout/LayoutSliderThumb.cpp
index 97676ad5cad6647640834c6e39c19867c9c6c81b..2479643e576e2e90640c2a24c20124efcd98215e 100644
--- a/third_party/WebKit/Source/core/layout/LayoutSliderThumb.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutSliderThumb.cpp
@@ -48,8 +48,6 @@ void LayoutSliderThumb::updateAppearance(const ComputedStyle& parentStyle) {
mutableStyleRef().setAppearance(MediaSliderThumbPart);
else if (parentStyle.appearance() == MediaVolumeSliderPart)
mutableStyleRef().setAppearance(MediaVolumeSliderThumbPart);
- else if (parentStyle.appearance() == MediaFullscreenVolumeSliderPart)
- mutableStyleRef().setAppearance(MediaFullscreenVolumeSliderThumbPart);
if (styleRef().hasAppearance())
LayoutTheme::theme().adjustSliderThumbSize(mutableStyleRef());
}

Powered by Google App Engine
This is Rietveld 408576698