370940-1.html 590 B

1234567891011121314151617181920212223242526272829
  1. <html class="reftest-wait">
  2. <head>
  3. <script>
  4. var HTML_NS = "http://www.w3.org/1999/xhtml";
  5. function boom1()
  6. {
  7. var newSpan = document.createElementNS(HTML_NS, "span");
  8. document.body.appendChild(newSpan);
  9. setTimeout(boom2, 30);
  10. }
  11. function boom2()
  12. {
  13. var newDiv = document.createElementNS(HTML_NS, "div");
  14. document.getElementById("s").appendChild(newDiv);
  15. document.documentElement.removeAttribute("class");
  16. }
  17. </script>
  18. </head>
  19. <body onload="setTimeout(boom1, 30);">
  20. <p>العربي</p>
  21. <span id="s"></span><input><select></select><isindex><span></span>
  22. </body>
  23. </html>