summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/details-three-columns.html
blob: a82c3e67480a2d3ac613bad4458562d7d92d3b03 (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
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <style>
  details {
    column-count: 3;
    column-rule: 1px solid lightgray;
    -webkit-column-count: 3;
    -webkit-column-rule: 1px solid lightgray;
    border: 1px solid lightblue;
  }
  summary {
    background-color: lightgreen;
  }
  </style>
  <body>
    <details open>
      <summary>Summary</summary>
      <p>line</p>
      <p>line</p>
      <p>line</p>
      <p>line</p>
      <p>line</p>
      <p>line</p>
      <p>line</p>
    </details>
  </body>
</html>