libxml2/test/relaxng/ambig_name-class.rng
Nick Wellnhofer f0df3e6d00 tests: Try to fix RelaxNG test cases
These were added recently in ea695ac0 and 8074b881 but were a total mess
of symbolic links and apparently mixed up files.

Symbolic links don't work on Windows.

Try to salvage one of the tests.
2023-12-21 15:02:24 +01:00

17 lines
351 B
Plaintext

<grammar xmlns="http://relaxng.org/ns/structure/1.0" >
<start>
<element name="foo">
<attribute>
<choice>
<name>alpha</name>
<name>bravo</name>
</choice>
<choice>
<value>none</value>
<value>all</value>
</choice>
</attribute>
</element>
</start>
</grammar>