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

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

Issue 2316983002: Change capitalization FullScreen->Fullscreen where possible in Blink (Closed)
Patch Set: update test expectations Created 4 years, 3 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 e700fe43efd022eb6ea20559069e6d6d26a4c4f1..13ee9164ad72810c05f863936e56811eaa73cab3 100644
--- a/third_party/WebKit/Source/core/layout/LayoutSliderThumb.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutSliderThumb.cpp
@@ -51,8 +51,8 @@ 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);
+ else if (parentStyle.appearance() == MediaFullscreenVolumeSliderPart)
+ mutableStyleRef().setAppearance(MediaFullscreenVolumeSliderThumbPart);
if (styleRef().hasAppearance())
LayoutTheme::theme().adjustSliderThumbSize(mutableStyleRef());
}

Powered by Google App Engine
This is Rietveld 408576698