details-writing-mode.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <!-- Any copyright is dedicated to the Public Domain.
  3. - http://creativecommons.org/publicdomain/zero/1.0/ -->
  4. <html>
  5. <style>
  6. body {
  7. display: grid;
  8. grid-template-rows: auto;
  9. grid-template-columns: repeat(3, 150px);
  10. }
  11. summary::-moz-list-bullet {
  12. /* Hide the triangle for comparing with div in reftest. */
  13. list-style-type: none;
  14. }
  15. details {
  16. border: 1px solid lightblue;
  17. }
  18. </style>
  19. <body>
  20. <details open style="writing-mode: horizontal-tb; direction: ltr;">
  21. <summary>Summary</summary>
  22. <p>This is the details.</p>
  23. </details>
  24. <details open style="writing-mode: vertical-rl; direction: ltr;">
  25. <summary>Summary</summary>
  26. <p>This is the details.</p>
  27. </details>
  28. <details open style="writing-mode: vertical-lr; direction: ltr;">
  29. <summary>Summary</summary>
  30. <p>This is the details.</p>
  31. </details>
  32. <details open style="writing-mode: horizontal-tb; direction: rtl;">
  33. <summary>Summary</summary>
  34. <p>This is the details.</p>
  35. </details>
  36. <details open style="writing-mode: vertical-rl; direction: rtl;">
  37. <summary>Summary</summary>
  38. <p>This is the details.</p>
  39. </details>
  40. <details open style="writing-mode: vertical-lr; direction: rtl;">
  41. <summary>Summary</summary>
  42. <p>This is the details.</p>
  43. </details>
  44. </body>
  45. </html>