mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-10 01:17:37 +03:00
97c9ce2e99
* parser.c: fix various attribute normalisation problems reported by Ashwin * result/c14n/without-comments/example-4 result/c14n/with-comments/example-4: this impacted the result of two c14n tests :-\ * test/att9 test/att10 test/att11 result//att9* result//att10* result//att11*: added 3 specific regression tests coming from the XML spec revision and from Ashwin Daniel svn path=/trunk/; revision=3715
23 lines
507 B
Plaintext
23 lines
507 B
Plaintext
<!DOCTYPE doc [
|
|
<!ELEMENT doc (tst*)>
|
|
<!ELEMENT tst (#PCDATA)>
|
|
<!ATTLIST tst a NMTOKENS #IMPLIED>
|
|
<!ATTLIST tst b CDATA #IMPLIED>
|
|
<!ENTITY d "
">
|
|
<!ENTITY a "
">
|
|
<!ENTITY da "
">
|
|
]>
|
|
<doc>
|
|
<tst a="
|
|
|
|
xyz" b="
|
|
|
|
xyz"/>
|
|
<tst a="&d;&d;A&a; &a;B&da;" b="&d;&d;A&a; &a;B&da;"/>
|
|
<tst a="

A

B
" b="

A

B
"/>
|
|
<tst a=" x  y " b=" x  y "/>
|
|
<tst a=" a b " b=" a b "/>
|
|
<tst a=" a b " b=" a b "/>
|
|
</doc>
|
|
|