[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / html / details-position.html
1 <style>
2
3 summary.fixed {
4     position: fixed;
5     left: 50px;
6     top: 150px;
7 }
8
9 summary.relative {
10     position: relative;
11     left: 150px;
12     top: 150px;
13 }
14
15 summary.absolute {
16     position: absolute;
17     left: 250px;
18     top: 150px;
19 }
20
21 </style>
22
23 <body>
24     <details>
25         <summary class="fixed">fixed</summary>
26         <input>
27     </details>
28     <details>
29         <summary class="relative">relative</summary>
30         <input>
31     </details>
32     <details>
33         <summary class="absolute">absolute</summary>
34         <input>
35     </details>
36 </body>