diff options
Diffstat (limited to 'test/relaxng/tutor11_3.rng')
-rw-r--r-- | test/relaxng/tutor11_3.rng | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/relaxng/tutor11_3.rng b/test/relaxng/tutor11_3.rng new file mode 100644 index 0000000..72e041d --- /dev/null +++ b/test/relaxng/tutor11_3.rng @@ -0,0 +1,15 @@ +<element name="example" xmlns="http://relaxng.org/ns/structure/1.0"> + <zeroOrMore> + <attribute> + <anyName/> + </attribute> + </zeroOrMore> + <optional> + <attribute name="xml:space"> + <choice> + <value>default</value> + <value>preserve</value> + </choice> + </attribute> + </optional> +</element> |