366537-1.xhtml 578 B

123456789101112131415161718192021222324252627282930313233
  1. <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
  2. <head>
  3. <script>
  4. function boom()
  5. {
  6. var fieldset = document.getElementById("fieldset");
  7. var h3 = document.getElementById("h3");
  8. var legend = document.getElementById("legend");
  9. fieldset.appendChild(legend);
  10. fieldset.appendChild(h3);
  11. document.documentElement.removeAttribute("class");
  12. }
  13. </script>
  14. </head>
  15. <body onload="setTimeout(boom, 30);">
  16. <legend id="legend">legend</legend>
  17. <h3 id="h3">H3</h3>
  18. <select><option>option<fieldset id="fieldset"></fieldset></option></select>
  19. </body>
  20. </html>