[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / overflow / before-after-overflow-hidden-horizontal-writing-mode-tb.html
1 <!DOCTYPE html>
2 <html>
3 <style>
4     div {
5         height: 100px;
6         width: 100px;
7     }
8
9     div#wrapper {
10         margin-left: 100px;
11         margin-top: 100px;
12         background-color: green;
13         overflow: hidden;
14     }
15
16     div#beforeOverflow {
17         background-color: red;
18         position: relative;
19         top: -100px;
20     }
21 </style>
22 <body>
23 <a href="https://bugs.webkit.org/show_bug.cgi?id=82129">82129</a>: REGRESSION (r110065-r110080): Content drawing outside overflow: hidden at ynet.co.il</a>
24 <p>Your shouldn't see any red on this page, just a green square.</p>
25 <div id="wrapper">
26     <div id="beforeOverflow"></div>
27 </div>
28 </body>
29 </html>