multipleinsertionpoints-ref2.xhtml 500 B

1234567891011121314151617181920212223242526
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <bindings xmlns="http://www.mozilla.org/xbl"
  4. xmlns:xhtml="http://www.w3.org/1999/xhtml">
  5. <binding id="a">
  6. <content>
  7. <xhtml:div>
  8. <children includes="span"/>
  9. </xhtml:div>
  10. <xhtml:div>
  11. <children/>
  12. </xhtml:div>
  13. </content>
  14. </binding>
  15. </bindings>
  16. </head>
  17. <body>
  18. <div style="-moz-binding: url(#a);">
  19. <div>3</div><span>1</span><div>4</div><span>2</span><div>5</div>
  20. </div>
  21. </body>
  22. </html>