<?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:ev="http://www.w3.org/2001/xml-events" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <head>
        <title>11.1.l indent attribute of submission element</title>
        <link rel="stylesheet" href="../../driverPages/html/TestSuite11.css" type="text/css"/>
        <xforms:model>
			<xforms:instance>
				<car xmlns="">
					<make>Acura</make>
					<year>2005</year>
					<color>blue</color>
				</car>
			</xforms:instance>
			<xforms:bind id="make_bind" nodeset="/car/make"/>
			<xforms:bind id="year_bind" nodeset="/car/year"/>
			<xforms:bind id="color_bind" nodeset="/car/color"/>
			
			<xforms:submission id="submit-dont" action="http://www.agencexml.com/xforms-tests/xsltforms/echo.php" method="post" indent="no"/>
			<xforms:submission id="submit-indent" action="http://www.agencexml.com/xforms-tests/xsltforms/echo.php" method="post" indent="yes"/>
			
        </xforms:model>
    </head>
    <body>
    	<xforms:group>
  			<xforms:label class="title">11.1.l indent attribute of submission element (non-normative)</xforms:label>
  		</xforms:group>
  		<xforms:group>
  			<xforms:label>
  				Each submit control below replaces the page with the form instance data. The Submit Without indent 
  				submits the form with a submission element that has an indent attribute set to "no". 
  				The Submit With indent submits the form with a submission element that has an indent attribute set 
  				to "yes". The differences between the two submissions, if any, are dependent on your renderer. 
  			</xforms:label>
  		</xforms:group>
  		<xforms:submit submission="submit-dont">
  			<xforms:label>Submit Without indent</xforms:label>
  		</xforms:submit>
  		<xforms:submit submission="submit-indent">
  			<xforms:label>Submit With indent</xforms:label>
  		</xforms:submit>
  		
    </body>
</html>
