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

All > Relax NG > Various possible syntax errors > Test 13

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
choice
elementname |
empty
notAllowed
text

ZVON comment: Element "notAllowed" cannot have any children from RelaxNG namespace.

Incorrect schema

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