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

Side by Side Diff: LayoutTests/fast/css/overflow-rtl-border-after.html

Issue 18720003: Correct overflow propagation in BTT and RTL writing-modes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add FIXME, as requested. Created 7 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Border-after in vertical-rl mode, non-visible overflow</title>
5 <style>
6 body { color:black; background:white; }
7 #container {
8 -webkit-writing-mode: vertical-rl;
9 writing-mode: vertical-rl;
10 overflow:scroll;
11 width:100px;
12 border-left:150px solid white;
13 background:red;
14 }
15 #inner { width:200px; background:white; }
16 </style>
17 <script src="../../resources/check-layout.js"></script>
18 </head>
19 <body onload="checkLayout('#container'); container.scrollLeft = 1000;">
20 <!-- We have to set the scroll position, because of https://bugs.webkit.org/ show_bug.cgi?id=76129
21 Furthermore, inner.scrollIntoView() doesn't work, so just set some insa ne left value.
22 This is just to make it look good; checkLayout() doesn't care. -->
23 <p>The word 'HEST' should be seen below, and there should be no red.</p>
24 <div id="container" data-expected-scroll-width="200">
25 <div id="inner">HEST</div>
26 </div>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698