<?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>3.1.a XForms namespace</title>
        <link rel="stylesheet" href="../../driverPages/forms/TestSuite11.css" type="text/css"/>
        <xforms:model>
            <xforms:instance>
                <car xmlns="">
                    <make>Honda</make>
                    <year>2005</year>
                    <color>tango red pearl</color>
                    <hp>127</hp>
                </car>
            </xforms:instance>
        </xforms:model>
    </head>
    <body>
        <xforms:group>
            <xforms:label class="title">3.1.a XForms namespace</xforms:label>
        </xforms:group>
        <xforms:group>
            <xforms:label>
            <!-- 
                An XForms processor must recognize elements and attributes in the XForms namespace.
                A simple XForms output should appear below, with a value as indicated by the label of 
                that output.
            -->
            	You must see a value of "Honda":
            </xforms:label>
        </xforms:group>
        <xforms:output ref="/car/make">
            <xforms:label/>
        </xforms:output>
    </body>
</html>
