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

Unified Diff: LayoutTests/fast/scrolling/overlay-scrollbars-expected.html

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: LayoutTests/fast/scrolling/overlay-scrollbars-expected.html
diff --git a/LayoutTests/fast/scrolling/overlay-scrollbars-expected.html b/LayoutTests/fast/scrolling/overlay-scrollbars-expected.html
index 2729728a0da7e6dec472f42ba619a8a590074aaa..de9680b9bc6d367c432eec67bf0925ef5bc8fde7 100644
--- a/LayoutTests/fast/scrolling/overlay-scrollbars-expected.html
+++ b/LayoutTests/fast/scrolling/overlay-scrollbars-expected.html
@@ -36,10 +36,18 @@ should have a scrollbar on the left.</p>
<div class="scrollbar vertical" style="right: 4px; top: 4px;"></div>
<div class="scrollbar horizontal" style="left: 4px; bottom: 4px;"></div>
</div>
-
<div dir="rtl" class="container">
-<div class="scrollbar vertical" style="left: 0px; top: 4px;"></div>
+<div class="scrollbar vertical" style="left: 4px; top: 4px;"></div>
<div class="scrollbar horizontal" style="right: 4px; bottom: 4px;"></div>
</div>
+
+<div class="container">
+<div class="scrollbar vertical" style="right: 4px; top: 4px; height: 85px"></div>
+<div class="scrollbar horizontal" style="left: 4px; bottom: 4px; width: 85px"></div>
+</div>
+<div dir="rtl" class="container">
+<div class="scrollbar vertical" style="left: 4px; top: 4px; height: 85px"></div>
+<div class="scrollbar horizontal" style="right: 4px; bottom: 4px; width: 85px"></div>
+</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698