summaryrefslogtreecommitdiffstats
path: root/layout/reftests/details-summary/open-nested-details-ref.html
blob: 75eada081a59e4a6a34557ec7cd1303b32784776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <body>
    <details open>
      <summary>outer summary</summary>
      <details open>
        <summary>inner summary</summary>
        <p>inner details</p>
        <details open>
          <summary>inner most summary</summary>
          <p>inner most details</p>
        </details>
      </details>
      <p>outer details</p>
    </details>
  </body>
</html>