overflow-auto-open-details.html 774 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. details {
  7. background-color: orange;
  8. overflow: auto;
  9. width: 300px;
  10. height: 200px;
  11. }
  12. summary::-moz-list-bullet {
  13. /* Hide the triangle for comparing with div in reftest. */
  14. list-style-type: none;
  15. }
  16. summary {
  17. background-color: green;
  18. overflow: auto;
  19. width: 200px;
  20. height: 100px;
  21. }
  22. div.tall {
  23. background-color: blue;
  24. border: 1px dotted purple;
  25. height: 1000px;
  26. width: 50px;
  27. }
  28. </style>
  29. <body>
  30. <details open>
  31. <summary>
  32. <div class="tall">
  33. </div>
  34. </summary>
  35. <div class="tall">
  36. </div>
  37. </details>
  38. </body>
  39. </html>