<?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">
  <head>
    <title>g.2.b repeat-item pseudo-element (non-normative)</title>
    <link rel="stylesheet" href="g2b.css" type="text/css"/>
    <xforms:model>
      <xforms:instance>
        <car xmlns="">
          <make>Honda</make>
          <make>Toyota</make>
          <make>Acura</make>
        </car>
      </xforms:instance>
    </xforms:model>
  </head>
  <body>
  	<xforms:group>
  		<xforms:label class="title">g.2.b repeat-item pseudo-element (non-normative)</xforms:label>
  	</xforms:group>
    <xforms:group>
    	<xforms:label>
		You smust see a list of cars with a yellow background. Also, the repeat items 
		must have a dashed box around them.
		</xforms:label>
    </xforms:group>
	<xforms:repeat nodeset="/car/make">
		<xforms:output ref=".">
			<xforms:label/>
		</xforms:output>
	</xforms:repeat>
	
  </body>
</html>
