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

Unified Diff: Source/platform/scroll/FramelessScrollView.cpp

Issue 341543002: Reland 176261: Fix for select PopupMenuList appearance in rtl mode with overlay-scrollbar enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | Source/web/PopupListBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scroll/FramelessScrollView.cpp
diff --git a/Source/platform/scroll/FramelessScrollView.cpp b/Source/platform/scroll/FramelessScrollView.cpp
index ce002fefaa49ef8dfc958baef9ebdb8776087644..90a0855b38c152b7b1c29a37c8774a605b9a8944 100644
--- a/Source/platform/scroll/FramelessScrollView.cpp
+++ b/Source/platform/scroll/FramelessScrollView.cpp
@@ -80,7 +80,7 @@ HostWindow* FramelessScrollView::hostWindow() const
IntRect FramelessScrollView::windowClipRect(IncludeScrollbarsInRect scrollbarInclusion) const
{
IntRect clipRect = visibleContentRect(scrollbarInclusion);
- if (shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar())
+ if (shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar() && !verticalScrollbar()->isOverlayScrollbar())
clipRect.move(verticalScrollbar()->width(), 0);
return contentsToWindow(clipRect);
}
« no previous file with comments | « no previous file | Source/web/PopupListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698