mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-02-05 05:47:00 +03:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<!DOCTYPE doc [
|
||
|
<!ATTLIST normId attr NMTOKENS #IMPLIED>
|
||
|
]>
|
||
|
<doc>
|
||
|
<!-- no normalization -->
|
||
|
<norm attr=" "/>
|
||
|
<norm attr=" foo bar "/>
|
||
|
<norm attr=" foobar"/>
|
||
|
<norm attr=" foo bar "/>
|
||
|
<norm attr="foobar "/>
|
||
|
<norm attr=" & "/>
|
||
|
<norm attr=" foo&bar "/>
|
||
|
<norm attr=" foobar&"/>
|
||
|
<norm attr="&foo bar "/>
|
||
|
<norm attr="foobar &"/>
|
||
|
<norm attr=" < "/>
|
||
|
<norm attr=" foo<bar "/>
|
||
|
<norm attr=" foobar<"/>
|
||
|
<norm attr="<foo bar "/>
|
||
|
<norm attr="foobar <"/>
|
||
|
<norm attr=" 	 "/>
|
||
|
<!-- normalization -->
|
||
|
<normId attr=""/>
|
||
|
<normId attr="foo bar"/>
|
||
|
<normId attr="foobar"/>
|
||
|
<normId attr="foo bar"/>
|
||
|
<normId attr="foobar"/>
|
||
|
<normId attr="&"/>
|
||
|
<normId attr="foo&bar"/>
|
||
|
<normId attr="foobar&"/>
|
||
|
<normId attr="&foo bar"/>
|
||
|
<normId attr="foobar &"/>
|
||
|
<normId attr="<"/>
|
||
|
<normId attr="foo<bar"/>
|
||
|
<normId attr="foobar<"/>
|
||
|
<normId attr="<foo bar"/>
|
||
|
<normId attr="foobar <"/>
|
||
|
<normId attr=" 	"/> <!-- PBM serializing back -->
|
||
|
</doc>
|