[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / html / details-nested-1.html
1 <style>
2 details {
3   border: solid 0.5em;
4 }
5
6 summary {
7   border: solid 0.5em;
8 }
9
10 summary.level1 {
11   border-color: #99c;
12 }
13
14 details.level1 {
15   border-color: #559;
16 }
17
18 summary.level2 {
19   border-color: #c99;
20 }
21
22 details.level2 {
23   border-color: #955;
24 }
25 </style>
26 <body>
27     <details class="level1" open>
28         <summary class="level1">
29             summary
30             <details  class="level2" open>
31                 <summary  class="level2">
32                     nested summary (summary-deails-summary)
33                 </summary>
34                 nested details (summary-deails)
35             </details>
36         </summary>
37         details
38     </details>
39 </body>