<?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: Content test</title>
    <style type='text/css'>
	#inner {text-decoration: underline}
	#para  {background-color: green}
    </style> 
    <xbl xmlns="http://www.w3.org/ns/xbl" id="test">
      <binding element=".underline">
	<template>
	 <div id="outer">
	  <div id="inner">
	   <content />				
	  </div>
	 </div>
        </template>
      </binding>
      <binding element="#par">
        <template>
         <div id="para">
          <content />
         </div>
        </template>
      </binding>
    </xbl>
  </head>
  <body>
   <p class="underline">Text that should be underlined</p>
   <p id="par">This text should be green</p>
  </body>
</html>
