373586-1.xhtml 786 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
  2. <head>
  3. <bindings xmlns="http://www.mozilla.org/xbl">
  4. <binding id="foo">
  5. <content>
  6. <children xmlns="http://www.mozilla.org/xbl" />
  7. </content>
  8. </binding>
  9. </bindings>
  10. <script>
  11. function boom()
  12. {
  13. document.getElementById("div").style.MozBinding = "url('#foo')";
  14. var opt1 = document.getElementById("opt1");
  15. opt1.removeChild(opt1.firstChild);
  16. document.getElementById("textarea").value += " ";
  17. document.documentElement.removeAttribute("class")
  18. }
  19. </script>
  20. </head>
  21. <body onload="setTimeout(boom, 30);">
  22. <div id="div">
  23. <textarea rows="3" cols="5" id="textarea"></textarea>
  24. </div>
  25. <select>
  26. <option id="opt1">opt1</option>
  27. </select>
  28. </body>
  29. </html>