mouse-click-open-single-summary.html 530 B

1234567891011121314151617181920
  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. <script>
  6. function runTest() {
  7. var summary = document.getElementById("summary");
  8. summary.dispatchEvent(new MouseEvent("click"));
  9. document.documentElement.removeAttribute("class");
  10. }
  11. </script>
  12. <body onload="runTest();">
  13. <details open>
  14. <summary id="summary">Summary</summary>
  15. <p>This is the details.</p>
  16. </details>
  17. </body>
  18. </html>