1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-14 22:50:08 +03:00
libxml2/result/ns6.sax

16 lines
278 B
Plaintext
Raw Permalink Normal View History

SAX.setDocumentLocator()
SAX.startDocument()
SAX.startElement(root)
SAX.characters(
, 3)
SAX.startElement(foo, xmlns='http://abc')
SAX.endElement(foo)
SAX.characters(
, 3)
SAX.startElement(bar)
SAX.endElement(bar)
SAX.characters(
, 1)
SAX.endElement(root)
SAX.endDocument()