libxml2/result/def-xml-attr.xml.sax

16 lines
338 B
Plaintext
Raw Permalink Normal View History

SAX.setDocumentLocator()
SAX.startDocument()
SAX.internalSubset(root, , )
SAX.attributeDecl(foo, xml:lang, 1, 1, eng, ...)
SAX.externalSubset(root, , )
SAX.startElement(root)
SAX.characters(
, 3)
SAX.startElement(foo, xml:lang='ger')
SAX.characters(Ja, 2)
SAX.endElement(foo)
SAX.characters(
, 1)
SAX.endElement(root)
SAX.endDocument()