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

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

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
elementname |
empty
grammar
startname |

ZVON comment: Attribute name is not allowed for element start.

Incorrect schema

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