diff options
Diffstat (limited to 'xsd/tests/schema/inheritance/sourced-forward')
-rw-r--r-- | xsd/tests/schema/inheritance/sourced-forward/includee.xsd | 10 | ||||
-rw-r--r-- | xsd/tests/schema/inheritance/sourced-forward/includer.xsd | 14 |
2 files changed, 0 insertions, 24 deletions
diff --git a/xsd/tests/schema/inheritance/sourced-forward/includee.xsd b/xsd/tests/schema/inheritance/sourced-forward/includee.xsd deleted file mode 100644 index 531027d..0000000 --- a/xsd/tests/schema/inheritance/sourced-forward/includee.xsd +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" ?> -<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://www.w3.org/2001/XMLSchema XMLSchema.xsd"> - - <xsd:simpleType name="Derived"> - <xsd:restriction base="Base"/> - </xsd:simpleType> - -</xsd:schema> diff --git a/xsd/tests/schema/inheritance/sourced-forward/includer.xsd b/xsd/tests/schema/inheritance/sourced-forward/includer.xsd deleted file mode 100644 index 7d18efc..0000000 --- a/xsd/tests/schema/inheritance/sourced-forward/includer.xsd +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" ?> -<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://www.w3.org/2001/XMLSchema XMLSchema.xsd" - xmlns:test="http://www.codesynthesis.com/xmlns/test" - targetNamespace="http://www.codesynthesis.com/xmlns/test"> - - <xsd:include schemaLocation="includee.xsd"/> - - <xsd:simpleType name="Base"> - <xsd:restriction base="xsd:string"/> - </xsd:simpleType> - -</xsd:schema> |