summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/overflow/unreachable-overflow-rtl-bug.html
blob: 55f768f3ae58ee752f1c9e5a0d7b791114663a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<style>
    div.outer { overflow: auto; width: 100px; position: relative; height: 100px; border: solid; }
    div.inner { position: absolute; top: 250px; }
</style>
LTR:
<div class="outer">
    <div class="inner" style="left: 200px;">foo</div>
</div>

RTL:
<div class="outer" style="direction: rtl;">
    <div class="inner" style="right: 200px;">foo</div>
</div>