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

All > Relax NG > other > Test 126

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
elementns |
empty
name

ZVON comment: The element "foo" must be from the namespace "http://www.example.com".

Correct schema

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


Valid document:
<foo xmlns="http://www.example.com" />

Invalid document:
<foo/>