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

All > Relax NG > Simplification - QNames > Test 129

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
elementname |
empty

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

Correct schema

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


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

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