mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

* xmlschemas.c test/schemas/restriction-enum-1* result/schemas/restriction-enum-1*: Fixed incorrect validation of restricted enumerations. Added related regression tests.
20 lines
611 B
XML
20 lines
611 B
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
<xs:simpleType name="fooType">
|
|
<xs:restriction base="xs:string">
|
|
<xs:enumeration value="a"/>
|
|
<xs:enumeration value="b"/>
|
|
<xs:enumeration value="c"/>
|
|
<xs:enumeration value="d"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
<xs:simpleType name="barType">
|
|
<xs:restriction base="fooType">
|
|
<xs:enumeration value="a"/>
|
|
<xs:enumeration value="b"/>
|
|
<xs:enumeration value="d"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
<xs:element name="foo" type="barType" />
|
|
</xs:schema>
|