<?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: Handler test - default-action</title>
    <style type='text/css'>
    </style> 
    <xbl xmlns="http://www.w3.org/ns/xbl">

    <binding id="b1" element="#link1">
     <handlers>
	<handler id="hand1" event="click" default-action="cancel">
          document.getElementById('title1').setAttribute("style", "background-color: green");
        </handler>
     </handlers>
    </binding>
    <binding id="b2" element="#link2">
     <handlers>
	<handler id="hand2" event="click" default-action="perform">
          document.getElementById('title2').setAttribute("style", "background-color: green");
        </handler>
     </handlers>
    </binding>
    <binding id="b3" element="#link3">
     <handlers>
	<handler id="hand3" event="mouseover" default-action="perform">
          document.getElementById('title3').setAttribute("style", "background-color: gray");
        </handler>
	<handler id="hand4" event="click" default-action="cancel" >
          document.getElementById('title3').setAttribute("style", "background-color: green");
        </handler>
     </handlers>
    </binding>
    <binding id="b4" element="#link4">
     <handlers>
	<handler id="hand5" event="click" default-action="inError">
          document.getElementById('title4').setAttribute("style", "background-color: green");
        </handler>
     </handlers>
   </binding>
   </xbl>
  </head>
  <body>
   <h1 id="title1"><a id="link1" href="http://www.xsmiles.org/">Single click should change the background to green but not open the link</a></h1>
   <h1 id="title2"><a id="link2" href="http://www.xsmiles.org/">Single click should change the background to green and open the link</a></h1>
   <h1 id="title3"><a id="link3" href="http://www.xsmiles.org/">Mouseover should change the background to gray and single click to green but not open the link</a></h1>
   <h1 id="title4"><a id="link4" href="http://www.xsmiles.org/">Single click should change the background to green and open the link</a></h1>
  </body>
</html>
