summaryrefslogtreecommitdiff
path: root/xml/tests/testData/completion/Substitute/schema-a.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'xml/tests/testData/completion/Substitute/schema-a.xsd')
-rw-r--r--xml/tests/testData/completion/Substitute/schema-a.xsd18
1 files changed, 18 insertions, 0 deletions
diff --git a/xml/tests/testData/completion/Substitute/schema-a.xsd b/xml/tests/testData/completion/Substitute/schema-a.xsd
new file mode 100644
index 000000000000..d359cf02280b
--- /dev/null
+++ b/xml/tests/testData/completion/Substitute/schema-a.xsd
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:a="http://test/a"
+ targetNamespace="http://test/a">
+
+ <xsd:complexType name="abstractType">
+ <xsd:attribute name="id" type="xsd:string" use="optional"/>
+ </xsd:complexType>
+
+ <xsd:complexType name="Root">
+ <xsd:sequence>
+ <xsd:element ref="a:instance" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="instance" type="a:abstractType"/>
+ <xsd:element name="root" type="a:Root"/>
+</xsd:schema> \ No newline at end of file