1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/test/relaxng/307377.rng
Daniel Veillard 60faf528d8 fixed bug #307377 about validation of choices in list values. added
* relaxng.c: fixed bug #307377 about validation of choices in
  list values.
* test/relaxng/307377* result/relaxng/307377* Makefile.am runtest.c:
  added examples to the regression tests, problem is that streaming
  version gives slightly more informations.
Daniel
2005-08-10 16:23:57 +00:00

15 lines
341 B
Plaintext

<element name="number" xmlns="http://relaxng.org/ns/structure/1.0">
<attribute name="val">
<list>
<oneOrMore>
<choice>
<value>1</value>
<value>2</value>
<value>3</value>
</choice>
</oneOrMore>
</list>
</attribute>
<text/>
</element>