mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-14 19:24:06 +03:00
186562a182
Fixes a regression from commit e0dd330b, resulting in duplicate attributes in the predefined XML namespace not being detected or extraneous default attributes being passed. Fixes #704.
8 lines
141 B
XML
8 lines
141 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE root [
|
|
<!ATTLIST foo xml:lang CDATA "eng">
|
|
]>
|
|
<root>
|
|
<foo xml:lang="ger">Ja</foo>
|
|
</root>
|