mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-29 21:25:35 +00:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
|
<!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>
|