diff options
Diffstat (limited to 'libxml2/test/schemas/restrict-CT-attr-ref_0.xsd')
-rw-r--r-- | libxml2/test/schemas/restrict-CT-attr-ref_0.xsd | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libxml2/test/schemas/restrict-CT-attr-ref_0.xsd b/libxml2/test/schemas/restrict-CT-attr-ref_0.xsd new file mode 100644 index 0000000..a98b82a --- /dev/null +++ b/libxml2/test/schemas/restrict-CT-attr-ref_0.xsd @@ -0,0 +1,30 @@ +<?xml version="1.0"?> +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" + attributeFormDefault="qualified" + xmlns:foo="http://FOO" + targetNamespace="http://FOO"> + + <xsd:attribute name="id" type="xsd:ID"/> + + <xsd:complexType name="typeIDAttr"> + <xsd:attribute ref="foo:id"/> + </xsd:complexType> + + <xsd:simpleType name="fooID"> + <xsd:restriction base="xsd:ID"> + <xsd:pattern value="b\d{10}"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:element name="foo"> + <xsd:complexType> + <xsd:complexContent> + <xsd:restriction base="foo:typeIDAttr"> + <xsd:attribute name="id" type="foo:fooID"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + +</xsd:schema>
\ No newline at end of file |