<?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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <head>
    <title>g.1.e out-of-range and in-range pseudo-classes (non-normative)</title>
    <link rel="stylesheet" href="g1e.css" type="text/css"/>
    <xforms:model>
      <xforms:instance>
        <car xmlns="">
          <year xsi:type="xsd:integer">2000</year>
          <horsepower xsi:type="xsd:integer">-100</horsepower>
        </car>
      </xforms:instance>
    </xforms:model>
  </head>
  <body>
  	<xforms:group>
  		<xforms:label class="title">g.1.e out-of-range and in-range pseudo-classes (non-normative)</xforms:label>
  	</xforms:group>
  	<xforms:group>
  		<xforms:label>
  		The first range must have a yellow background, the second range 
  		must have a blue background.
  		</xforms:label>
  	</xforms:group>

	<xforms:range ref="/car/year" start="1975" end="2010" step="1">
		<xforms:label>Car Year (valid) : </xforms:label>
	</xforms:range>

	<xforms:range ref="/car/horsepower" start="0" end="2000" step="100">
		<xforms:label>Horsepower (invalid) : </xforms:label>
	</xforms:range>

	

  </body>
</html>