467080.xul 785 B

12345678910111213141516171819202122232425
  1. <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
  2. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mathml="http://www.w3.org/1998/Math/MathML" style="-moz-binding:url(#a);" class="reftest-wait">
  3. <content xmlns="http://www.mozilla.org/xbl" ordinal="-1">
  4. <mathml:median style="display: block;"/>
  5. </content>
  6. <script xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
  7. function finish() {
  8. document.documentElement.removeAttribute("class");
  9. }
  10. function doe() {
  11. document.documentElement.removeAttribute('style');
  12. setTimeout(finish, 0);
  13. }
  14. setTimeout(doe, 100);
  15. ]]></script>
  16. <bindings xmlns="http://www.mozilla.org/xbl">
  17. <binding id="a">
  18. <content><children/></content>
  19. </binding></bindings>
  20. </window>