libxml2/result/adjacent-cdata.xml.sax
Nick Wellnhofer 8ae06d5223 SAX2: Don't merge CDATA sections
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.
2024-08-29 01:31:19 +02:00

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