<?xml-stylesheet type="text/xsl" href="/xforms-tests/xsltforms/xsltforms.xsl"?>
<html xmlns:my="http://commerce.example.com/payment" xmlns:txs="http://sourceforge.net/projects/txs" xmlns="http://www.w3.org/1999/xhtml" xmlns:req="http://www.agencexml.com/requests" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events">
  	<head>
    	<title>8.1.5.b value attribute of output element</title>
    	<link rel="stylesheet" href="../../../driverPages/forms/TestSuite11.css" type="text/css"/>
    	<xforms:model>
       		<xforms:instance xmlns="">
 		    	<car>
   			   		<make>Lotus</make>
   			   		<year>2005</year>
   			   		<color>Aztec Bronze</color>
   			   		<price>43000</price>
        		</car>
       		</xforms:instance>
       		<xforms:bind id="year_bind" nodeset="/car/year"/>
    	</xforms:model>
  	</head>
  	<body>
  	    <xforms:group>
  		    <xforms:label class="title">8.1.5.b value attribute of output element</xforms:label>
  		</xforms:group>
  		<xforms:group>
  			<xforms:label>
  			  You must see the value "1032" for the Tax output control and 
  			  the value "2005" for the Car Year output control. 
			</xforms:label>
		</xforms:group>
		<xforms:group>
	  		<xforms:output value="0.024 * /car/price">
	     		<xforms:label>Tax : </xforms:label>
	  		</xforms:output>
	  	</xforms:group>
  		<xforms:group>
	  		<xforms:output value="/car/price" bind="year_bind">
	  			<xforms:label>Car Year : </xforms:label>
			</xforms:output>
		</xforms:group>
  </body>
</html>
