mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-25 23:21:26 +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.
16 lines
419 B
Plaintext
16 lines
419 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(root, , )
|
|
SAX.attributeDecl(foo, xml:lang, 1, 1, eng, ...)
|
|
SAX.externalSubset(root, , )
|
|
SAX.startElementNs(root, NULL, NULL, 0, 0, 0)
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElementNs(foo, NULL, NULL, 0, 1, 0, xml:lang='ger"...', 3)
|
|
SAX.characters(Ja, 2)
|
|
SAX.endElementNs(foo, NULL, NULL)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElementNs(root, NULL, NULL)
|
|
SAX.endDocument()
|