<?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: Xbl test</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>
   </xbl>
   <xbl xmlns="http://www.w3.org/ns/xbl" id="outer">
    <!-- The inner xbl element is in error and should not be used! -->
    <xbl xmlns="http://www.w3.org/ns/xbl" id="inner">
      <binding element="h2">
        <template>
          <xhtml:b>Error</xhtml:b>
        </template>
      </binding>
    </xbl>
    <binding element="h3">
       <template>
         <xhtml:b>This should be included in h3!</xhtml:b>
       </template>
    </binding>
  </xbl>
  <!-- The element is in error and should not be used! -->
  <binding element="h4">
     <template>
       <xhtml:b>Error</xhtml:b>
     </template>
  </binding>
  </head>
  <body>
  <h1>Error</h1>
  <h2>Test</h2>
  <h3>Error</h3>
  <h4>Test</h4>
  </body>
</html>
