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

* xmlschemastypes.c: Fixed bug #309338, reported by Kupriyanov Anotolij. * test/schemas/bug309338* result/schemas/bug309338*: Added a regression test for the above bug.
13 lines
340 B
XML
13 lines
340 B
XML
<?xml version="1.0"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:f="urn:test:foo"
|
|
targetNamespace="urn:test:foo">
|
|
<xsd:element name="foo" type="f:fooType"/>
|
|
|
|
<xsd:simpleType name="fooType">
|
|
<xsd:restriction base="xsd:decimal">
|
|
<xsd:minExclusive value="0"/>
|
|
</xsd:restriction>
|
|
</xsd:simpleType>
|
|
|
|
</xsd:schema> |