1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!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::-moz-list-bullet {
- /* 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>
|