dynamic-remove-first-summary.html 700 B

123456789101112131415161718192021222324
  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. // Remove first <summary> from <details>. Second <summary> should be used.
  8. var details = document.getElementById("details");
  9. var summary = document.getElementById("summary");
  10. details.removeChild(summary);
  11. document.documentElement.removeAttribute("class");
  12. }
  13. </script>
  14. <body onload="runTest();">
  15. <details open id="details">
  16. <summary id="summary">Removed Summary</summary>
  17. <summary>Summary</summary>
  18. <p>This is the details.</p>
  19. </details>
  20. </body>
  21. </html>