Test/XForms1.1/Edition1/Chapt09/9.3/9.3.5/9.3.5.a.xhtml repeat attributes

In test Test/XForms1.1/Edition1/Chapt09/9.3/9.3.5/9.3.5.a.xhtml there ar two issues:

1. repeat attributes on elements in the XForms namespace
  <xforms:group xforms:repeat-nodeset="/cart/items/item">
Repeat attributes in the xforms namespace are not in a foreign namespace and aren't by default allowed.
Do we intend that all XForms processors supporting repeat must support the xforms attributes?
If so, on what XForms elements must they be supported?

2. The final test in the file says it is testing repeat-* attributes, but it doesn't use them.
    <xforms:group>
     <xforms:label>Part 3: If the XForms processor under test supports repeat-* attribute usage, you will see a list of car parts (windshield wipers, tires, exhaust, air freshener):</xforms:label>
    </xforms:group>
    <xforms:group>
     <xforms:label>Items in cart : </xforms:label> 
   <xforms:repeat nodeset="/cart/items/item">
     <xforms:output ref=".">
      <xforms:label/>
     </xforms:output>
   </xforms:repeat>
    </xforms:group>

Received on Friday, 11 December 2009 19:54:11 UTC