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

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

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
elementname |
empty
grammar
startname |

ZVON comment: Hmm, start element cannot have name attribute.

Incorrect schema

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