1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00
libxml2/test/schemas/ns2_0.xsd
Daniel Veillard ebcdebd638 QName handling fixes for the XML Schemas support from Adam Dickmeiss also
* xmlschemas.c: QName handling fixes for the XML Schemas
  support from Adam Dickmeiss
* test/schemas/po1_0.xsd: also fix the schemas
* test/schemas/ns[12]* result/schemas/ns[12]*: added the specific
  regression tests
Daniel
2004-03-05 00:15:50 +00:00

16 lines
370 B
XML

<schema xmlns:my='http://my.ns/'
xmlns='http://www.w3.org/2001/XMLSchema'
targetNamespace='http://my.ns/'
>
<attribute name='other' type='string'/>
<element name='my'>
<complexType>
<simpleContent>
<extension base='string'>
<attribute ref='my:other'/>
</extension>
</simpleContent>
</complexType>
</element>
</schema>