1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/test/relaxng/565219.rng
Daniel Veillard 2fab235d10 Fix support for except in nameclasses
For https://bugzilla.gnome.org/show_bug.cgi?id=565219

The code was imply missing even if simple, added a few regression
tests.
2015-03-16 08:43:37 +08:00

15 lines
279 B
Plaintext

<grammar xmlns="http://relaxng.org/ns/structure/1.0">
<start>
<element>
<anyName>
<except>
<nsName ns="http://bar.com/"/>
<nsName ns="http://foo.com/"/>
</except>
</anyName>
<empty/>
</element>
</start>
</grammar>