mirror of
https://github.com/darlinghq/darling-libxml2.git
synced 2025-02-10 04:24:01 +00:00
7c1206fc06
Added xmlValidGetValidElements and xmlValidGetPotentialChildren, Completed and cleaned up the tests, Added doc for new modules gnome-xml-xmlmemory.html and gnome-xml-nanohttp.html, Daniel
18 lines
327 B
XML
18 lines
327 B
XML
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(doc)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.processingInstruction(document-start, doc)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(empty)
|
|
SAX.endElement(empty)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.processingInstruction(document-end, doc)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(doc)
|
|
SAX.endDocument()
|