<?xml-stylesheet type="text/xsl" href="/xforms-tests/xsltforms/xsltforms.xsl"?>
<html xmlns:my="http://example.com" 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:my1="http://example.com" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<head>
		<title>7.2.a evaluation context for the outermost binding elements</title>
		<link rel="stylesheet" href="../../driverPages/forms/TestSuite11.css" type="text/css"/>
	    <xforms:model>
	        <xforms:instance xmlns="">
			    <my1:user>
			        <my1:first>Seth</my1:first>
					<my1:last>Peters</my1:last>
					<my1:email>speters@example.com</my1:email>
			    </my1:user>
			</xforms:instance>
			<xforms:bind id="firstname" nodeset="my:first"/>
			<xforms:bind id="lastname" nodeset="my:last"/>
	    </xforms:model>
	</head>
	<body>
		<xforms:group>
			<xforms:label class="title">
				7.2.a evaluation context for the outermost binding elements
			</xforms:label>
		</xforms:group>	
		<xforms:group>
			<xforms:label>
				You must see a value of "Seth" for First Name, a value of "Peters" for Last Name, 
				and a value of "speters@example.com" for Email Address. 
			</xforms:label>
		</xforms:group>
	    <xforms:input bind="firstname">
	        <xforms:label>First Name : </xforms:label>
	    </xforms:input>
	    <xforms:input bind="lastname">
	        <xforms:label>Last Name : </xforms:label>
	    </xforms:input>
	    <xforms:output ref="my:email">
	        <xforms:label>Email Address : </xforms:label>
	    </xforms:output>
		
	</body>
</html>
