1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/test/relaxng/tutor10_9.rng
Daniel Veillard fc1a4503fb check all the namespace support was actually correct based on tutorial
* test/relaxng/* result/relaxng/*: check all the namespace support
  was actually correct based on tutorial section 10.
Daniel
2003-02-02 16:02:55 +00:00

15 lines
416 B
Plaintext

<element name="ab:addressBook" xmlns:ab="http://www.example.com/addressBook"
xmlns:a="http://www.example.com/address"
xmlns="http://relaxng.org/ns/structure/1.0">
<zeroOrMore>
<element name="ab:card">
<element name="a:name">
<text/>
</element>
<element name="a:email">
<text/>
</element>
</element>
</zeroOrMore>
</element>