mouse-click-fixed-summary.html 612 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <!-- Any copyright is dedicated to the Public Domain.
  3. - http://creativecommons.org/publicdomain/zero/1.0/ -->
  4. <html class="reftest-wait">
  5. <style>
  6. summary {
  7. position: fixed;
  8. bottom: 0;
  9. right: 0;
  10. }
  11. </style>
  12. <script>
  13. function runTest() {
  14. var summary = document.getElementById("summary");
  15. summary.dispatchEvent(new MouseEvent("click"));
  16. document.documentElement.removeAttribute("class");
  17. }
  18. </script>
  19. <body onload="runTest();">
  20. <details>
  21. <summary id="summary">Summary</summary>
  22. <p>This is the details.</p>
  23. </details>
  24. </body>
  25. </html>