mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-10 08:58:16 +03:00
* test/schemas/bug303566_1* result/schemas/bug303566_1_1*: Added regression a test provided by Heiko Oberdiek (bug #303566). level for XML Schema IDCs (bug #303566 reported by Heiko Oberdiek). This should not affect pattern-like resolution on every level.
20 lines
417 B
XML
20 lines
417 B
XML
<?xml version="1.0"?>
|
|
<Test
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="bug303566_1.xsd">
|
|
<Country code="D">
|
|
<City name="Berlin"
|
|
code="B">
|
|
<Part country="D"/>
|
|
<Part country="B"/>
|
|
</City>
|
|
</Country>
|
|
<Country code="F">
|
|
<City name="Paris" code="P">
|
|
<Part country="F"/>
|
|
<Part country="F"/>
|
|
</City>
|
|
</Country>
|
|
</Test>
|
|
|