1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00
libxml2/test/schemas/any6_2.xsd
Kasimier T. Buchcik 76d73f5bc5 Added some more tests for element wildcards.
* test/schemas/any7_2.xml test/schemas/any6_2.xsd
  test/schemas/any8_1.xsd test/schemas/any8_0.xml:
  Added some more tests for element wildcards.
2005-08-09 13:56:25 +00:00

20 lines
540 B
XML

<?xml version="1.0"?>
<!--
"element complexType: Schemas parser error :
local complex type: The content model is not determinist."
This schema is OK with XSV and Xerces.
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="urn:test:foo"
elementFormDefault="qualified">
<xs:element name="foo">
<xs:complexType>
<xs:sequence>
<xs:element name="bar" maxOccurs="unbounded"/>
<xs:any namespace="##other" processContents="lax"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>