<?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'>
  <head>
    <title>XBL 2.0 Test Suite: Handler test - Event handler fire order</title>
    <style type='text/css'>
    </style> 
    <xbl xmlns="http://www.w3.org/ns/xbl">
    <binding id="b1" element="#t1" extends="#b2">
     <handlers>
 	    <handler id="hand1" event="mouseover">
		   document.getElementById('t1').setAttribute("style", "background-color: green");
        </handler>
     </handlers>
    </binding>
    <binding id="b2">
     <handlers>
 	    <handler id="hand2" event="mouseover">
		   document.getElementById('t1').setAttribute("style", "background-color: red");
        </handler>
     </handlers>
    </binding>
    <binding id="b3" element="#t2">
     <handlers>
 	    <handler id="hand3" event="mouseover">
		   document.getElementById('t2').setAttribute("style", "background-color: red");
        </handler>
     </handlers>
    </binding>
    <binding id="b4" element="#t2">
     <handlers>
 	    <handler id="hand4" event="mouseover">
		   document.getElementById('t2').setAttribute("style", "background-color: green");
        </handler>
     </handlers>
    </binding>
    <binding id="b5" element="#t3">
     <handlers>
 	    <handler id="hand5" event="mouseover">
		   document.getElementById('t3').setAttribute("style", "background-color: red");
        </handler>
     </handlers>
    </binding>
    <binding id="b6" element="#t3" extends="#b7">
     <handlers>
 	    <handler id="hand6" event="mouseover">
		   document.getElementById('t3').setAttribute("style", "background-color: green");
        </handler>
     </handlers>
    </binding>
    <binding id="b7">
     <handlers>
 	    <handler id="hand7" event="mouseover">
		   document.getElementById('t3').setAttribute("style", "background-color: red");
        </handler>
     </handlers>
    </binding>
    </xbl>
  </head>
  <body>  
   <h1 id="t1">Onmouseover this should turn green</h1>
   <h1 id="t2">Onmouseover this should turn green</h1>
   <h1 id="t3">Onmouseover this should turn green</h1>
 </body>
</html>
