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

All > Relax NG > Simplification - QNames > Test 130

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
attributename |
elementname |

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

Correct schema

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


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

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