doronr%us.ibm.com aba91aa02b Bug 335367 - add support for xsd:import. Patch by sspeiche, r=me
git-svn-id: svn://10.0.0.236/trunk@200592 18797224-902f-48f8-a5cc-f745e15eee43
2006-06-22 15:59:34 +00:00

23 lines
727 B
XML

<?xml version="1.0" ?>
<schema targetNamespace="http://www.mozilla.org/schema/test_imported"
xmlns:test="http://www.mozilla.org/schema/test_imported"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
attributeFormDefault="qualified"
xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://www.mozilla.org/schema/test_imported2" schemaLocation="schema_imported2.xsd" />
<include schemaLocation="schema_no_ns.xsd" />
<include schemaLocation="schema_ns.xsd" />
<simpleType name="import-integer-test-1">
<restriction base='integer'>
<maxExclusive value="10"/>
<minExclusive value="5"/>
</restriction>
</simpleType>
</schema>