[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / overflow / unreachable-overflow-rtl-bug.html
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>
9
10 RTL:
11 <div class="outer" style="direction: rtl;">
12     <div class="inner" style="right: 200px;">foo</div>
13 </div>