1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-19 10:03:34 +03:00
Daniel Veillard 7d2c276a65 Fixed probles in some HTML tag autoclose, XML output bug on mixed-content
and fixed the related output for tests, Daniel.
1999-10-11 15:09:51 +00:00

18 lines
421 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.internalSubset(EXAMPLE, (null), example.dtd)
SAX.entityDecl(xml, 1, (null), (null), Extensible Markup Language)
SAX.getEntity(xml)
SAX.startElement(EXAMPLE)
SAX.characters(
Test of , 11)
SAX.getEntity(amp)
SAX.characters(&, 1)
SAX.characters(amp; behaviour a, 16)
SAX.getEntity(amp)
SAX.characters(&, 1)
SAX.characters(b .
, 4)
SAX.endElement(EXAMPLE)
SAX.endDocument()