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

The Document Object Model (DOM) Level 3 Core Specification says: > Adjacent CDATASection nodes are not merged by use of the normalize > method of the Node interface. Fixes #412.
9 lines
162 B
Plaintext
9 lines
162 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(doc)
|
|
SAX.pcdata(abc, 3)
|
|
SAX.pcdata(def, 3)
|
|
SAX.pcdata(ghi, 3)
|
|
SAX.endElement(doc)
|
|
SAX.endDocument()
|