mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-25 06:03:34 +03:00
441bc32e31
* xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: implementing xs:all with minOccurs = 0 * tes/schemas/* result/schemas/*: added more tests covering xs:all Daniel
13 lines
326 B
XML
13 lines
326 B
XML
<?xml version="1.0"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
<xsd:element name="doc">
|
|
<xsd:complexType>
|
|
<xsd:all minOccurs="1">
|
|
<xsd:element name="a"/>
|
|
<xsd:element name="b"/>
|
|
<xsd:element name="c"/>
|
|
</xsd:all>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
</xsd:schema>
|