mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-11 12:58:16 +03:00
* xmlschemastypes.c: applied patch from Kuba Nowakowski fixing bug #313982 * result/schemas/bug313982* test/schemas/bug313982*: also added the test case to the regression suite. Daniel
12 lines
508 B
XML
12 lines
508 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsd:schema targetNamespace="http://www.foo.com" elementFormDefault="qualified"
|
|
xmlns="http://www.foo.com" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
<xsd:element name="testDecimalFacet">
|
|
<xsd:simpleType>
|
|
<xsd:restriction base="xsd:decimal">
|
|
<xsd:minInclusive value="0"/>
|
|
</xsd:restriction>
|
|
</xsd:simpleType>
|
|
</xsd:element>
|
|
</xsd:schema>
|