1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00
libxml2/test/schemas/seq0_0.xml
Daniel Veillard b39bc39378 Christian Glahn found a problem with a recent patch to
* parser.c: Christian Glahn found a problem with a recent
  patch to xmlParseBalancedChunkMemoryRecover()
* xmlschemas.c: Charles Bozeman fixed some Schemas validation
  problems
* result/schemas/elem* result/schemas/seq* test/schemas.elem*
  test/schemas/seq*: added the test cases from Charles
Daniel
2002-10-26 19:29:51 +00:00

62 lines
613 B
XML

<doc>
<!-- at least one present -->
<z-o>
<b/>
</z-o>
<o-o>
<c/>
</o-o>
<z-u>
<d/>
</z-u>
<o-u>
<e/>
</o-u>
<z-3>
<f/>
</z-3>
<o-3>
<g/>
</o-3>
<!-- more than one present when allowed -->
<z-o>
<b/>
</z-o>
<o-o>
<c/>
</o-o>
<z-u>
<d/>
<d/>
<d/>
</z-u>
<o-u>
<e/>
<e/>
<e/>
</o-u>
<z-3>
<f/>
<f/>
<f/>
</z-3>
<o-3>
<g/>
<g/>
<g/>
</o-3>
<!-- min 0 are not present -->
<z-o/>
<o-o>
<c/>
</o-o>
<z-u/>
<o-u>
<e/>
</o-u>
<z-3/>
<o-3>
<g/>
</o-3>
</doc>