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

All > Relax NG > Simplification - number of child elements > Test 142

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
attributename |
elementname |

ZVON comment: Element "foo" must have an attribute "bar". The attribute element - which defines the "bar" attribute - does not have any children, so text element is added, and thus the "bar" attribute can be empty or contain a text.

Correct schema


Valid document:
<foo bar=""/>

Valid document:
<foo bar="x"/>

Invalid document:
<foo/>