mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-25 06:03:34 +03:00
b439896915
* xmlschemas.c: more Schemas work * test/schemas/* result/schemas/*: added more tests coming from the spec. Daniel
11 lines
339 B
XML
11 lines
339 B
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
<xs:complexType name="length3">
|
|
<xs:sequence>
|
|
<xs:element name="size" type="xs:non-positive-integer"/>
|
|
<xs:element name="unit" type="xs:NMTOKEN"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
<xs:element name="depth" type="length3"/>
|
|
</xs:schema>
|