ZVON > References > Zvon Example Repository
Example repository: index | categories | search

All > Relax NG > Simplification - combine attribute > Test 192

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
elementname |
empty
grammar
startcombine | name |

ZVON comment: If there is a start element that has a combine attribute with the value "choice", there must not also be a start element that has a combine attribute with the value interleave.

Incorrect schema

<element name="foo" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns="http://relaxng.org/ns/structure/1.0" >
     <grammar>
          <start name="x" combine="choice">
               <element name="bar1">
                    <empty/>
               </element>
          </start>
          <start name="x">
               <element name="bar2">
                    <empty/>
               </element>
          </start>
          <start name="x" combine="interleave">
               <element name="bar3">
                    <empty/>
               </element>
          </start>
     </grammar>
</element>