<?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:default="http://example.org" 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.f namespace declarations in scope for the attribute are applied to the expression</title>
		<link rel="stylesheet" href="../../driverPages/forms/TestSuite11.css" type="text/css"/>
		<xforms:model>
			<xforms:instance>
				<Root xmlns="http://example.org">Mazda</Root>
			</xforms:instance>
			<xforms:bind xmlns:ex="http://example.org" nodeset="/ex:Root" readonly="true()"/>
		</xforms:model>
	</head>
	<body>
		<xforms:group>
			<xforms:label class="title">7.2.f namespace declarations in scope for the attribute are applied to the 
			expression</xforms:label>
		</xforms:group>	
		<xforms:group>
			<xforms:label>
			The Car Make input control must contain the value "Mazda" and you must be unable to 
			change the value. 
			<!-- 
				Rule 8: Create an instance whose Root element node declares
				a default namespace of http://example.org. Create a bind
				element that declares xmlns:ex to be equal to
				http://example.org and which assigns readonly of true() to
				the ex:Root element. Create an input control that declares
				xmlns:ex again and also binds to ex:Root. Ensure that the
				input control is read only and the default value should be 'Mazda'.
			-->
			</xforms:label>	
		</xforms:group>
		<xforms:input xmlns:ex="http://example.org" ref="/ex:Root">
			<xforms:label>Car Make : </xforms:label>
		</xforms:input>		
		
	</body>
</html>
