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

All > Relax NG > Simplification - Constraints > Test 154

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
anyName
choice
element
empty
except
grammar
name
start

ZVON comment: An except element that is a child of an anyName element must not have any anyName descendant elements.

Incorrect schema

<grammar xmlns:html="http://www.w3.org/TR/REC-html40" xmlns="http://relaxng.org/ns/structure/1.0" >
     <start>
          <element>
               <anyName>
                    <except>
                         <choice>
                              <anyName/>
                              <name>foo</name>
                         </choice>
                    </except>
               </anyName>
               <empty/>
          </element>
     </start>
</grammar>