mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-19 10:03:34 +03:00
7d2c276a65
and fixed the related output for tests, Daniel.
18 lines
421 B
Plaintext
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()
|