summaryrefslogtreecommitdiffstats
path: root/layout/reftests/details-summary/details-writing-mode.html
blob: 44cd45f920efd5d1691c66da59cba2eaf8070c4b (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
40
41
42
43
44
45
46
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <style>
  body {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 150px);
  }
  summary {
    /* Hide the triangle for comparing with div in reftest. */
    list-style-type: none;
  }
  details {
    border: 1px solid lightblue;
  }
  </style>
  <body>
    <details open style="writing-mode: horizontal-tb; direction: ltr;">
      <summary>Summary</summary>
      <p>This is the details.</p>
    </details>
    <details open style="writing-mode: vertical-rl; direction: ltr;">
      <summary>Summary</summary>
      <p>This is the details.</p>
    </details>
    <details open style="writing-mode: vertical-lr; direction: ltr;">
      <summary>Summary</summary>
      <p>This is the details.</p>
    </details>
    <details open style="writing-mode: horizontal-tb; direction: rtl;">
      <summary>Summary</summary>
      <p>This is the details.</p>
    </details>
    <details open style="writing-mode: vertical-rl; direction: rtl;">
      <summary>Summary</summary>
      <p>This is the details.</p>
    </details>
    <details open style="writing-mode: vertical-lr; direction: rtl;">
      <summary>Summary</summary>
      <p>This is the details.</p>
    </details>
  </body>
</html>