432068-1.xul 798 B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();">
  4. <hbox style="display: none;">
  5. <bindings xmlns="http://www.mozilla.org/xbl">
  6. <binding id="x">
  7. <content><listitem xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/></content>
  8. </binding>
  9. </bindings>
  10. </hbox>
  11. <script type="text/javascript">
  12. function boom()
  13. {
  14. document.getElementById("b").style.MozBinding = "url('#x')";
  15. // Flush layout.
  16. document.documentElement.boxObject.height;
  17. document.getElementById("listbox").removeChild(document.getElementById("c"));
  18. }
  19. </script>
  20. <listbox id="listbox"><listitem/><listitem id="b"/><listitem id="c"/></listbox>
  21. </window>