Error in XForms-1.1 test suite: test case 8.1.5.1.a

Dear list,

i found an possible error in test case 8.1.5.1.a.

The mediatyp-element of the output-control contains
ref="../@mediatype"" instead of value="../@mediatype" .

Original:

<xforms:group>
  <xforms:output bind="image" mediatype="text/plain">
   <xforms:label>Image : </xforms:label>
   <xforms:mediatype ref="../@mediatype"/>
  </xforms:output>
</xforms:group>

Fix:

<xforms:group>
  <xforms:output bind="image" mediatype="text/plain">
   <xforms:label>Image : </xforms:label>
   <xforms:mediatype value="../@mediatype"/>
  </xforms:output>
</xforms:group>

Kind regards

Tobi Krebs

Received on Wednesday, 6 January 2010 16:11:44 UTC