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

Unified Diff: Source/core/rendering/RenderLayerScrollableArea.cpp

Issue 23480037: Fix RTL scroll bars being misrendered on Android. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: isLeftSideVerticalScrollbar Created 7 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: Source/core/rendering/RenderLayerScrollableArea.cpp
diff --git a/Source/core/rendering/RenderLayerScrollableArea.cpp b/Source/core/rendering/RenderLayerScrollableArea.cpp
index 4cf3890fe14df858b41138b01400a4ce51739c60..24222c1bbb0d4a51bf347cba05c204563a174c2b 100644
--- a/Source/core/rendering/RenderLayerScrollableArea.cpp
+++ b/Source/core/rendering/RenderLayerScrollableArea.cpp
@@ -332,6 +332,11 @@ bool RenderLayerScrollableArea::userInputScrollable(ScrollbarOrientation orienta
return m_layer->userInputScrollable(orientation);
}
+bool RenderLayerScrollableArea::shouldPlaceVerticalScrollbarOnLeft() const
+{
+ return m_layer->shouldPlaceVerticalScrollbarOnLeft();
+}
+
int RenderLayerScrollableArea::pageStep(ScrollbarOrientation orientation) const
{
return m_layer->pageStep(orientation);

Powered by Google App Engine
This is Rietveld 408576698