1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00
libxml2/test/schemas/restriction-enum-1_1.xsd
Kasimier T. Buchcik b63d2fab2d Fixed incorrect validation of restricted enumerations. Added related
* xmlschemas.c test/schemas/restriction-enum-1*
  result/schemas/restriction-enum-1*: Fixed incorrect
  validation of restricted enumerations. Added related
  regression tests.
2006-04-19 11:20:49 +00:00

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>