1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-02-20 13:57:22 +03:00
libxml2/test/schemas/bug167754_0.xsd
Kasimier T. Buchcik 0c34776789 Added the regression test of Frans Englich for bug #167754.
* test/schemas/bug167754_0*: Added the regression test of Frans
  Englich for bug #167754.
2005-02-18 11:47:38 +00:00

29 lines
1.1 KiB
XML

<?xml version="1.0"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:target="http://www.example.com/Test"
targetNamespace="http://www.example.com/Test"
version="1.0"
elementFormDefault="qualified" >
<xsd:element name="foo" />
<xsd:element name="bar" />
<xsd:element name="joe" />
<xsd:complexType name="dominik">
<xsd:all>
<xsd:element minOccurs="0" ref="target:foo" />
<xsd:element minOccurs="0" ref="target:bar" />
<xsd:element minOccurs="0" ref="target:joe" />
</xsd:all>
</xsd:complexType>
<xsd:element name="test">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="unbounded" name="child" type="target:dominik" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>