1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-14 19:24:06 +03:00
libxml2/result/noent/att7.sax2
Nick Wellnhofer dbaab1f369 Test SAX2 callbacks with entity substitution
This detects regressions like bug 760367.
2017-06-16 21:38:57 +02:00

24 lines
667 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.internalSubset(x, , )
SAX.elementDecl(x, 4, ...)
SAX.elementDecl(test, 1, ...)
SAX.attributeDecl(test, att, 1, 1, attvalue, ...)
SAX.entityDecl(test.ent, 1, (null), (null), <test/>)
SAX.getEntity(test.ent)
SAX.externalSubset(x, , )
SAX.startElementNs(x, NULL, NULL, 0, 0, 0)
SAX.characters(
, 5)
SAX.startElementNs(test, NULL, NULL, 0, 1, 1, att='attv...', 8)
SAX.endElementNs(test, NULL, NULL)
SAX.characters(
, 5)
SAX.getEntity(test.ent)
SAX.startElementNs(test, NULL, NULL, 0, 1, 1, att='attv...', 8)
SAX.endElementNs(test, NULL, NULL)
SAX.characters(
, 1)
SAX.endElementNs(x, NULL, NULL)
SAX.endDocument()