1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-16 02:50:07 +03:00
libxml2/test/relaxng/choice0.rng

26 lines
492 B
Plaintext
Raw Permalink Normal View History

<?xml version="1.0"?>
<element xmlns="http://relaxng.org/ns/structure/1.0" name="device">
<choice>
<group>
<attribute name="link">
<value>ethernet</value>
</attribute>
<optional>
<element name="ethernet-element">
<text/>
</element>
</optional>
</group>
<group>
<attribute name="link">
<value>serial</value>
</attribute>
<optional>
<element name="serial-element">
<text/>
</element>
</optional>
</group>
</choice>
</element>