Added the regression test of Frans Englich for bug #167754.

* test/schemas/bug167754_0*: Added the regression test of Frans
  Englich for bug #167754.
This commit is contained in:
Kasimier T. Buchcik 2005-02-18 11:47:38 +00:00
parent ff858ca8e4
commit 0c34776789
3 changed files with 46 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Fri Feb 18 12:41:10 CET 2005 Kasimier Buchcik <libxml2-cvs@cazic.net>
* test/schemas/bug167754_0*: Added the regression test of Frans
Englich for bug #167754.
Fri Feb 18 12:31:49 CET 2005 Kasimier Buchcik <libxml2-cvs@cazic.net>
* xmlschemas.c: Started support for IDC resolution to default

View File

@ -0,0 +1,12 @@
<?xml version="1.0"?>
<test xmlns="http://www.example.com/Test"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.example.com/Test bug167754.xsd">
<child>
<foo/>
</child>
<child>
<foo/>
<joe/>
</child>
</test>

View File

@ -0,0 +1,29 @@
<?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>