403574-1.xhtml 529 B

123456789101112131415161718192021222324
  1. <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
  2. <head>
  3. <bindings xmlns="http://www.mozilla.org/xbl"><binding id="foo"><content>
  4. <frame xmlns="http://www.w3.org/1999/xhtml"><children xmlns="http://www.mozilla.org/xbl"/></frame>
  5. </content></binding></bindings>
  6. <script>
  7. function boom()
  8. {
  9. document.getElementById("span").style.MozBinding = "url('#foo')";
  10. document.documentElement.removeAttribute("class");
  11. }
  12. </script>
  13. </head>
  14. <body onload="setTimeout(boom, 100);">
  15. <span id="span"></span>
  16. </body>
  17. </html>