open-summary-inline-style.html 559 B

1234567891011121314151617181920212223
  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. summary {
  7. display: inline;
  8. }
  9. </style>
  10. <body>
  11. <details open>
  12. <p>This is the details.</p>
  13. <!-- Make summary the second element child so that layout will try to
  14. render it as the first child. -->
  15. <summary>Summary
  16. <!-- Need ib-split so that the summary has multiple frames. -->
  17. <div>Block in summary</div>
  18. </summary>
  19. </details>
  20. </body>
  21. </html>