Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / overflow / unreachable-overflow-rtl-bug.html
blob55f768f3ae58ee752f1c9e5a0d7b791114663a8a
1 <style>
2 div.outer { overflow: auto; width: 100px; position: relative; height: 100px; border: solid; }
3 div.inner { position: absolute; top: 250px; }
4 </style>
5 LTR:
6 <div class="outer">
7 <div class="inner" style="left: 200px;">foo</div>
8 </div>
10 RTL:
11 <div class="outer" style="direction: rtl;">
12 <div class="inner" style="right: 200px;">foo</div>
13 </div>