summaryrefslogtreecommitdiff
path: root/test/relaxng/492317.rng
blob: 343f294551a726d9b5ba11f76109b26b58cfeefc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<element name="root" xmlns="http://relaxng.org/ns/structure/1.0">
  <choice>
    <element name="child">
      <attribute name="type">
        <value>Foo</value>
      </attribute>
      <!-- Define stuff that's only valid when type is "Foo" -->
    </element>
    <element name="child">
      <attribute name="type">
        <value>Bar</value>
      </attribute>
      <!-- Define stuff that's only valid when type is "Bar" -->
    </element>
  </choice>
</element>