mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

* 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.
20 lines
540 B
XML
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>
|