summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/html/details-nested-1.html
blob: e3d43939cad4a2ad4b724648417703119132485c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<style>
details {
  border: solid 0.5em;
}

summary {
  border: solid 0.5em;
}

summary.level1 {
  border-color: #99c;
}

details.level1 {
  border-color: #559;
}

summary.level2 {
  border-color: #c99;
}

details.level2 {
  border-color: #955;
}
</style>
<body>
    <details class="level1" open>
        <summary class="level1">
            summary
            <details  class="level2" open>
                <summary  class="level2">
                    nested summary (summary-deails-summary)
                </summary>
                nested details (summary-deails)
            </details>
        </summary>
        details
    </details>
</body>