key-enter-open-second-summary.html 669 B

12345678910111213141516171819202122
  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. // Dispatch 'return' key on second summary should not collapse details.
  8. var summary = document.getElementById("summary");
  9. summary.dispatchEvent(new KeyboardEvent("keypress", {"keyCode": 13}));
  10. document.documentElement.removeAttribute("class");
  11. }
  12. </script>
  13. <body onload="runTest();">
  14. <details open>
  15. <summary>Summary</summary>
  16. <summary id="summary">Second Summary</summary>
  17. <p>This is the details.</p>
  18. </details>
  19. </body>
  20. </html>