mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-25 23:21:26 +03:00
abac41e829
* parser.c: fixing bug #166777 (and #169838), it was an heuristic in areBlanks which failed. * result/winblanks.xml* result/noent/winblanks.xml test/winblanks.xml: added the input file to the regression tests Daniel
19 lines
296 B
Plaintext
19 lines
296 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(a)
|
|
SAX.characters(
|
|
, 5)
|
|
SAX.startElement(B)
|
|
SAX.characters(
|
|
, 9)
|
|
SAX.startElement(C)
|
|
SAX.endElement(C)
|
|
SAX.characters( , 3)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(B)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(a)
|
|
SAX.endDocument()
|