mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-11 12:58:16 +03:00
* xmlregexp.c xmlschemas.c: trying to nail down the remaining ##other issues * result/schemas/any7* test/schemas/any7: completed the tests and added the results * result/schemas/any3_0_0.err result/schemas/any5_0_0.err result/schemas/any5_1_0.err: this slightly chnages the output from 3 existing tests Daniel
14 lines
381 B
XML
Executable File
14 lines
381 B
XML
Executable File
<?xml version="1.0"?>
|
|
<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"/>
|
|
<xs:any namespace="##other" processContents="lax" maxOccurs="2"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|