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

All > Relax NG > Simplification - Constraints > Test 172

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
anyName
attribute
elementname |
except
name
oneOrMore
text

ZVON comment: You cannot put "xmlns" attribute to null namespace.

Incorrect schema

<element name="foo" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns="http://relaxng.org/ns/structure/1.0" >
     <oneOrMore>
          <attribute>
               <anyName>
                    <except>
                         <name>xmlns</name>
                    </except>
               </anyName>
               <text/>
          </attribute>
     </oneOrMore>
</element>