1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00
libxml2/result/noent/ns5.sax2
Nick Wellnhofer dbaab1f369 Test SAX2 callbacks with entity substitution
This detects regressions like bug 760367.
2017-06-16 21:38:57 +02:00

12 lines
450 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.startElementNs(element, NULL, 'http://example.org/ns/1', 2, xmlns:rng='http://example.org/ns/1', xmlns='http://example.org/ns/1', 1, 0, name='foo"...', 3)
SAX.characters(
, 3)
SAX.startElementNs(empty, NULL, 'http://example.org/ns/1', 0, 0, 0)
SAX.endElementNs(empty, NULL, 'http://example.org/ns/1')
SAX.characters(
, 1)
SAX.endElementNs(element, NULL, 'http://example.org/ns/1')
SAX.endDocument()