mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-30 13:17:37 +03: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
14 lines
285 B
XML
14 lines
285 B
XML
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.processingInstruction(document-start, doc)
|
|
SAX.startElement(doc)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(empty)
|
|
SAX.endElement(empty)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(doc)
|
|
SAX.processingInstruction(document-end, doc)
|
|
SAX.endDocument()
|