1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00
libxml2/result/def-xml-attr.xml.sax
Nick Wellnhofer 186562a182 parser: Fix detection of duplicate attributes in XML namespace
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.
2024-03-12 20:02:52 +01:00

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()