mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

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.
16 lines
338 B
Plaintext
16 lines
338 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(root, , )
|
|
SAX.attributeDecl(foo, xml:lang, 1, 1, eng, ...)
|
|
SAX.externalSubset(root, , )
|
|
SAX.startElement(root)
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElement(foo, xml:lang='ger')
|
|
SAX.characters(Ja, 2)
|
|
SAX.endElement(foo)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(root)
|
|
SAX.endDocument()
|