<?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:xsd="http://www.w3.org/2001/XMLSchema">
  <head>
    <title>g.1.c valid and invalid pseudo-classes (non-normative)</title>
    <link rel="stylesheet" href="g1c.css" type="text/css"/>
    <xforms:model>
      <xforms:instance>
        <car xmlns="">
          <oilChange>true</oilChange>
          <tireRotation>not yet</tireRotation>
        </car>
      </xforms:instance>
      <xforms:bind id="oil" nodeset="/car/oilChange" type="xsd:boolean"/>
      <xforms:bind id="tire" nodeset="/car/tireRotation" type="xsd:boolean"/>
    </xforms:model>
  </head>
  <body>
  	<xforms:group>
  		<xforms:label class="title">g.1.c valid and invalid pseudo-classes (non-normative)</xforms:label>
  	</xforms:group>
  	<xforms:group>
  		<xforms:label>
  		The valid output must have a teal background, the invalid output 
  		must have a red background.
  		</xforms:label>
  	</xforms:group>
  	
	<xforms:output ref="/car/oilChange">
		<xforms:label>Oil Change (valid)</xforms:label>
	</xforms:output>
	
	<xforms:output ref="/car/tireRotation">
		<xforms:label>Tire Rotation (invalid)</xforms:label>
	</xforms:output>
    
	
  </body>
</html>
