1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00
libxml2/test/VCM/AttributeNmtokens.xml
Daniel Veillard 807b4de282 applied patch from Malcolm Tredinnick fixing errata E20 concerning
* valid.c TODO: applied patch from Malcolm Tredinnick fixing errata
  E20 concerning NMTOKENS and co. validation #153722
* result/VC/AttributeNmtokens test/VC/AttributeNmtokens
  test/VCM/AttributeNmtokens.xml: also added tests from Malcolm
Daniel
2004-09-26 14:42:56 +00:00

15 lines
236 B
XML

<!DOCTYPE doc [
<!ELEMENT doc (norm+)>
<!ELEMENT norm EMPTY>
<!ATTLIST norm attr NMTOKENS #IMPLIED>
]>
<doc>
<norm attr = ' foo bar
'/>
<norm attr = 'foobar
'/>
<norm attr = 'foo bar '/>
<norm attr = ' foo &#x20;bar'/>
</doc>