<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns='http://www.w3.org/1999/xhtml'
      xmlns:xbl='http://www.w3.org/ns/xbl'
      xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <head>
    <title>XBL 2.0 Test Suite: Binding test - element</title>
    <style type='text/css'>
    </style> 
    <xbl xmlns="http://www.w3.org/ns/xbl">
     <binding element="h1">
        <template>
          <xhtml:b>This should be included in h1!</xhtml:b>
        </template>
     </binding>
     <binding element="h2">
        <template>
          <xhtml:b>This should be included in h2!</xhtml:b>
        </template>
     </binding>
    </xbl>
    <xbl xmlns="http://www.w3.org/ns/xbl">
     <binding element="unknownns>h3">
        <template>
          <xhtml:b>Error</xhtml:b>
        </template>
     </binding>
     <binding element="h4, h5">
        <template>
          <xhtml:b>This should be included in h4 and h5!</xhtml:b>
        </template>
     </binding>
    </xbl>
    <xbl xmlns="http://www.w3.org/ns/xbl">
     <binding element="h3#inc">
        <template>
          <xhtml:b>This should be included in h3 with id 'inc'!</xhtml:b>
        </template>
     </binding>
    </xbl>
  </head>
  <body>
   <h1>Error</h1>
   <h2>Error</h2>
   <h2>Error</h2>
   <h3>Test</h3>
   <h3 id="inc">Error</h3>
   <h4>Error</h4>
   <h5>Error</h5>
  </body>
</html>
