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

Unified Diff: Source/core/platform/ScrollView.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/platform/ScrollView.cpp
diff --git a/Source/core/platform/ScrollView.cpp b/Source/core/platform/ScrollView.cpp
index 995c15a8bc6b7a7fd0740cdbc3a1327be1924684..17f4180a36dc53b3e1f0962420ee9c09904a5a58 100644
--- a/Source/core/platform/ScrollView.cpp
+++ b/Source/core/platform/ScrollView.cpp
@@ -809,6 +809,11 @@ bool ScrollView::userInputScrollable(ScrollbarOrientation orientation) const
return mode == ScrollbarAuto || mode == ScrollbarAlwaysOn;
}
+bool ScrollView::shouldPlaceVerticalScrollbarOnLeft() const
+{
+ return false;
+}
+
void ScrollView::repaintContentRectangle(const IntRect& rect)
{
IntRect paintRect = rect;

Powered by Google App Engine
This is Rietveld 408576698