mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-27 03:21:26 +03:00
60faf528d8
* 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
15 lines
341 B
Plaintext
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>
|