dynamic-add-single-summary.html 701 B

12345678910111213141516171819202122232425
  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. // Insert a <summary> as the first child of the <details>.
  8. var summary = document.createElement("summary");
  9. var text = document.createTextNode("Summary");
  10. summary.appendChild(text);
  11. var details = document.getElementById("details");
  12. details.insertBefore(summary, details.children[0]);
  13. document.documentElement.removeAttribute("class");
  14. }
  15. </script>
  16. <body onload="runTest();">
  17. <details open id="details">
  18. <p>This is the details.</p>
  19. </details>
  20. </body>
  21. </html>